The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
39 views

Java reading files from dynamic external jar

What i am trying to do and have been researching on how to do for many days is to have a mother jar that looks through a folder and loads all the jars in there dynamically ( Not really needing to know ...
0
votes
0answers
15 views

URLClassloader not able to access classes in the classpath

I created a jar file at runtime( this jarfile has some dependency jar which are in the classpath). Now I have to load the newly created jar at runtime. Im using URLClassLoader to load the classes in ...
0
votes
1answer
45 views

Reading bytes from a class

I am trying to get a class from a path on a file system, and get the bytes from it. I have tried what is below, but have had no success. This should just print out the name for now. If anyone has any ...
2
votes
1answer
57 views

URLClassLoader not able to Load dependencies on Linux

I am using URLClassLoader for loading classes. Though the name of the file which i pass is loaded successfully but for classes which it referes to, NoClassDefFoundError is thrown for those. Both the ...
0
votes
1answer
46 views

modify the classpath dynamically

I want to add the configuration files under /home/nameuser/.myProject/conf to the classpath at runtime. I tried using URLClassLoader but without success. URL[] url={new URL("file://foo")}; ...
1
vote
2answers
59 views

Loading a custom class from arbitrary location

I am having some issues with Class Loading in Java. Inside my project I am trying to dynamically load a class from anywhere. However, I am currently failing at loading a hard-coded one and am still ...
0
votes
1answer
286 views

Load jar dynamically

In my java application, I read a jar file (packaged with Maven shade plugin) into a bytestream. In the jar there is a entrypoint class defined in POM.xml <build> ... <plugins> ... ...
0
votes
1answer
213 views

Small class to allow a java program to auto-update itself

The goal is to have a simple Java class start a jar main-class. When the main-class finishes, it can be queried if it would like to be reloaded. By this method it can hot-update itself and re-run ...
0
votes
1answer
48 views

Can't seem to get my class to load using UrlClassLoader

So I made a super-simple file, and shot it up onto my server at: http://myServer:8080/testApp/ In there is testApp.jar and a folder that acts as bin. I've tried a few things to fix this but I ...
2
votes
1answer
122 views

Error when load JAR file classes at run time

I am trying to add JAR file to class path and load all classes from JAR file at run time. here is the code I wrote for this task (This class extends URLClassLoader) public void loadJar(final String ...
0
votes
2answers
149 views

Getting NoClassDefFoundError with custom handler on Glassfish 3.1

The problem Our web app creates a java.net.URL passing our custom implementation of a URLStreamHandler to the constructor. On that URL, we call url.openConnection(). The java.net.URL code calls ...
2
votes
1answer
104 views

How would I fix this classloader issue?

Let me start off by saying I'm not the best at Java so I may have missed something really simple... I'm working on a plugin system and everything works perfectly fine in eclipse but not when I ...
0
votes
2answers
161 views

URLClassLoader can't find classes

I want to use an URLClassLoader to load classes in a particular directory from a jar-archive. The project structure is as follows / application.jar /lib/ mysql.jar log4j.jar ... /myClasses/ ...
0
votes
0answers
59 views

URLClassLoader : How to set the URL

Suppose in tomcat,It have two applications :app1 and app2,the folder structure is as below tomcat6 -webapps -app1 -WEB-INF -lib -test1.jar -app2 ...
1
vote
2answers
284 views

Reload class file in tomcat

I am creating a class file at run time. I want to replace the existing class file with the updated one in the class loader. It is similar to hot swapping (e.g. JRebel) which avoids server restart ...
2
votes
1answer
210 views

OneJar and dynamic class loading

We're currently investigating the use of OneJar in our application (for a number reasons), but our application makes use of a number of custom URLClassloaders to load application extensions. When ...
0
votes
0answers
62 views

Read console output, written by a class loaded through URLClassLoader?

in my class I load a class through the URLClassLoader. This class is using System.out.println. Is it possible for the class which loads the external class to get the external class' console output? ...
0
votes
0answers
14 views

URLClassLoader find method throws exception

I am using URLClassLoader to load specific class from specified JAR. Class gets loaded and instantiated sucessfully; But when i try to find public method or list methods, it complains about ...
0
votes
0answers
488 views

How to use URLStreamHandlerFactory with URLClassLoader to dynamically load a class from a webpage?

So this is a complex question and I am really coming up at a loss here. I am trying to load from a webpage a .class or a .jar file by reading the webpage into a buffer and loading a Class from the ...
0
votes
1answer
92 views

URLClassLoader issue for jars created with JarOutputStream

the URLClassLoader class fails to load classes from the jar created programatically using the code listed below, whereas when i create a jar with the same classes using jar cf %jarname% %sources% it ...
2
votes
2answers
606 views

Java classLoader dilemma with locked jars

I was playing around with classLoaders in Java and noticed a strange thing. If a classLoader loads a class from a jar, this jar is locked indefinitely even if you unreference your classLoader. In the ...
1
vote
2answers
278 views

Java JAR protection

I've coded a Java app and I plan to distribute it online. Each release will be locked with a secret serial key I made. I need to secure my jar file from decompiler etc. Here is what I've done so ...
0
votes
1answer
113 views

Does URLClassLoader.addURL(URL) honor the META-INF/MANIFEST.MF

If I have a jar that includes a Class-Path entry in the MANIFEST.MF. If I add the jar to a URLClassLoader, are the jars in the Class-Path entry also added to the classloader? Do I need to introspect ...
0
votes
0answers
523 views

URLClassLoader, “hot-swapping” jar files and ClassFormatError - weird behavior

Rewritten from scratch @ Friday, 25 May, about 16:00 GMT (Code is cleaner now, bug can be reproduced and the question is more clear) Original problem: I'm writing a server app that's required to ...
0
votes
2answers
528 views

NoClassDefFoundError when dynamically adding jar files at runtime

UPDATE: I think the issue may be caused by the fact that the TestFramework.jar depends on JUnit and somehow is not finding the junit jar when it (TestFramework) loads. Still not sure on a solution, ...
0
votes
2answers
272 views

URLClassLoader does not read external JAR library of a plugin

I have implemented a simple plugin based application with Java. Main plugin class is derived from and abstract class called "Plugin". The application reads that class from JAR file and runs the plugin ...
0
votes
1answer
91 views

Prevent 3rd party classloader from loading a class

I'm invoking third party code method.invoke(null, args); and it has a classloader that loads a class. Is it possible that I can prevent it from loading a specific class? Also There is more than one ...
2
votes
3answers
5k views

Java example with ClassLoader

I have small problem. I learn java SE and find class ClassLoader. I try to use it in below code: I am trying to use URLClassLoader to dynamically load a class at runtime. URLClassLoader urlcl = new ...
0
votes
1answer
149 views

Java How to load classes out of a jar in the classpath with the System ClassLoader (no URLClassLoader)?

So, I need to load some class at runtime with the System ClassLoader out of a jar in the classpath, but every time I try, I get a ClassNotFoundException. With the System ClassLoader, am I able to do ...
3
votes
3answers
158 views

Java is there a way to load a class that has been already loaded by the System ClassLoader by a different one?

(Terrible Title, I know) The best way to explain this, is that I need to load some classes that will be loaded at Runtime from a URLClassLoader, by these classes have references to instances of ...
1
vote
2answers
605 views

Load classes from folder without specifying the package

I have an application that allows, using an abstract class, people to write their own implementations. I load these implementations as .class-files from a directory. Currently, I have this solution: ...
1
vote
1answer
273 views

How can I make Spring load classes from a given URL (for bean instantiation)?

Is there a way to tell Spring to load classes from a given URL while instantiating the beans? I need to load classes from a location that is not in the classpath. If I were using pure Java, I could ...
2
votes
1answer
92 views

Cunning classloader solution/hack needed for making child CL JMS interfaces available in parent CL

I'm writing a multi-vendor JMS adapter, and some silly licensing issues have thrown up the need for a cunning classloader solution/hack - it isn't going to be pretty, but I'd love to hear some ...
1
vote
1answer
359 views

Java dynamic class loading fails on windows, but working fine on linux

I am trying to load a class dynamically from a jar file. It worked fine on a Ubuntu linux box ( Sun Java Version 1.6.0_24 (b07). When I tried to run the same thing on Windows (Windows 7, Java version ...
1
vote
0answers
439 views

Java: Using defineClass to Dynamically Create Class from Bytes

It seems like I should be able to do this with a class loader derived from URLClassLoader that includes a loadClass(): public Class loadClass(String className, byte[] classBytes) throws ...
0
votes
2answers
270 views

URLClassLoader throws No Class Definition found exception

I have 3 Java projects A, B and C. B is like an add-on to A. A and B both depend on project C for some classes. Now in project A when I use a URLClassLoader as follows: URLClassLoader ucl = new ...
0
votes
1answer
138 views

How exactly does URLClassLoader work? java

So I know how to use URLClassLoader, and I know what it does, what I want to know is how exactly does it do it. Basically I'm asking: Is it a live stream? Or does it do a temporary download and reads ...
0
votes
2answers
1k views

How to load all classes of a jar file at runtime?

According to this question, it is possible to load a class from a jar file with: ClassLoader loader = URLClassLoader.newInstance( new URL[] { jarFileURL }, getClass().getClassLoader() ); ...
7
votes
4answers
790 views

How do I “close” a ClassLoader?

I have a case where I need to create a lot of class loaders in my application to temporarily make some code visible while user supplied scripts are running. I'm using an URLClassLoader for this and it ...
0
votes
1answer
85 views

Can't load classes from dir. with jars while can do loading classes when jars unzipped/unpacked

community! Would be great if u could help me w/ my issue. I got a custom class loader which is gonna to be java.system.class.loader - it holds urls where to find classes. Like this: public class ...
1
vote
2answers
516 views

Signed applet loads signed jar-files using URLClassLoader with security issue

I have a signed applet. To implement some plugin architecture I download and store to disk a JAR file with specific classes. Then I load these classes with URLCLassLoader. So, now I try to invoke ...
1
vote
2answers
144 views

Compiling classes with Toolprovider and loading them with ClassLoader

I'm trying to load classes that I generate an compile in runtime. I can compile them without no problem with this code: JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); ...
0
votes
0answers
133 views

load programatically bin classes to classloader

I need load java bin classes from a custom folders, this is my example code, to load classes from folder. example code: public static void main(String[] args) { File file = new ...
0
votes
3answers
127 views

Getting variables and methods of class from loaded class.

My scenario: A class is going to be loaded from a number of different classes using ClassLoader. How do I get the methods and variables from the class that loads another class - from the other ...
1
vote
0answers
32 views

Loading a class from server machine

I want to test an API which lines in a jar. But I don't have the jar in my local machine. And the API takes custom objects which are non serializable. So I am planning to use XStream to convert to ...
2
votes
3answers
3k views

Custom URLClassLoader, NoClassDefFoundError when run

I've created my own URLClassLoader, and set it as the system classloader via java.system.class.loader. It's initialized and everything, but the classes I'm trying to load aren't found. Here's the ...
1
vote
2answers
2k views

Java: Automatic Custom ClassLoader

My application uses the Standard Widget Toolkit (SWT) for it's GUI. My problem is that the 32-bit SWT library does not work on a 64-bit JVM. But I don't want to make people select the correct ...
0
votes
1answer
584 views

URLClassLoader not working

I want to load a file in the directory F:/badge-dao/bin/com/badge/dao/impl/, named BadgeDaoImpl. I am writing and testing the following code. If I change the directory or the class name, it throws an ...
0
votes
1answer
609 views

ISelection — How can I get ClassLoader for the selected class in the navigator

I am new to Eclipse plugin development, and I am trying to develop a plugin where I am required to load a class which is selected in the Navigator. Can you please instruct me how can I load a class ...
1
vote
1answer
277 views

java urlclassloader usage.Is it needed only in some rare cases?

In which case one would use a URLClassLoader to load a class from a specific jar in a specified path? E.g. URL url = new URL("file:///path/to/customClasses.jar"); URLClassLoader pluginLoader = new ...

1 2