Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / October 2007

Tip: Looking for answers? Try searching our database.

changing the classpath at runtime in code

Thread view: 
Aryeh M. Friedman - 25 Oct 2007 00:38 GMT
Is it possible for a java app to change it's classpath at runtime.  I
tried:

System.setProperty("java.class.path","foo")

The reason for wanting to try is URLClassLoader will not physically
reread a class file if it is in the classpath.   See
http://groups.google.com/group/comp.lang.java.programmer/browse_thread/thread/79
3a9146df18365a/ceaa154348f6f271#ceaa154348f6f271

Arne Vajhøj - 25 Oct 2007 01:16 GMT
> Is it possible for a java app to change it's classpath at runtime.  I
> tried:
[quoted text clipped - 3 lines]
> The reason for wanting to try is URLClassLoader will not physically
> reread a class file if it is in the classpath.

Create a URLClassLoader with a url that are *not* in the parent
classloaders url's.

Arne
Aryeh M. Friedman - 25 Oct 2007 01:54 GMT
On Oct 24, 8:16 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > Is it possible for a java app to change it's classpath at runtime.  I
> > tried:
[quoted text clipped - 6 lines]
> Create a URLClassLoader with a url that are *not* in the parent
> classloaders url's.

so just do:

URL[] url={new URL("file://foo")};
URLClassLoader laoder=new URLClassLoader(url);
?
Arne Vajhøj - 25 Oct 2007 02:13 GMT
>>> Is it possible for a java app to change it's classpath at runtime.  I
>>> tried:
[quoted text clipped - 9 lines]
> URLClassLoader laoder=new URLClassLoader(url);
> ?

I have a little demo example I often use to illustrate
(subdir test is not in classpath of program).

Arne

===============================

import java.io.*;
import java.net.*;

public class DoubleDynmaic {
   private static void dynno(int n) {
      (new File("test")).mkdir();
      try {
         OutputStream os = new FileOutputStream("test/Test.java");
         PrintStream ps = new PrintStream(os);
         ps.println("public class Test {");
         ps.println("   public Test() {");
         ps.println("      System.out.println(" + n + ");");
         ps.println("   }");
         ps.println("}");
         ps.close();
         os.close();
         Runtime.getRuntime().exec("javac -d test
test/Test.java").waitFor();
         URL[] url = new URL[1];
         url[0] = new URL("file:test/");
         URLClassLoader cl = new URLClassLoader(url);
         Class.forName("Test", true, cl).newInstance();
      } catch (Exception e) {
         e.printStackTrace();
      }
   }
   public static void main(String[] args) {
      for(int i = 0; i < 10; i++) {
         dynno(i);
      }
   }
}
Aryeh M. Friedman - 25 Oct 2007 02:26 GMT
On Oct 24, 9:13 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > On Oct 24, 8:16 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> >>> Is it possible for a java app to change it's classpath at runtime.  I
[quoted text clipped - 13 lines]
> I have a little demo example I often use to illustrate
> (subdir test is not in classpath of program).

You posted this in the original thread but as noted in the linked to
thread almost all the classes I am dealing with *WILL* be in the
classpath.... so the question remains if I do the code in my previous
post will it now load from the class path or from "foo".

> Arne
>
[quoted text clipped - 33 lines]
>
> }
Arne Vajhøj - 25 Oct 2007 02:31 GMT
>>>>> Is it possible for a java app to change it's classpath at runtime.  I
>>>>> tried:
[quoted text clipped - 14 lines]
> classpath.... so the question remains if I do the code in my previous
> post will it now load from the class path or from "foo".

If the class get loaded by the parent classloader because it is
in the apps general classpath, then you can (as far as I know)
neither get it unloaded or reloaded.

You need to get those classes of the classpath.

Arne
Aryeh M. Friedman - 25 Oct 2007 04:32 GMT
On Oct 24, 9:31 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > On Oct 24, 9:13 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> >>> On Oct 24, 8:16 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
[quoted text clipped - 22 lines]
>
> You need to get those classes of the classpath.

Since this is for a commercial unit testing product this is not
possible in practice (it is not safe to make assumptions about where
people place things).   Some one off line suggested forking a process
to do it.... if I can't find a ClassLoader based solution I will have
to do that but it is down right a) not portable b) evil
Daniel Pitts - 25 Oct 2007 05:29 GMT
>>>>>>> Is it possible for a java app to change it's classpath at runtime.  I
>>>>>>> tried:
[quoted text clipped - 24 lines]
> to do it.... if I can't find a ClassLoader based solution I will have
> to do that but it is down right a) not portable b) evil

Hmm, I think as a publisher of said software, you can say how it should
work.  If you can't make any assumptions whatsoever then you're lost.
You'll end up writing this program for clients who want to be able to
bounce a network signal off the moon for some reason.

It's all about making reasonable assumptions.  It is reasonable to
assume that you can have a degree of control the environment/context in
which your application starts up.  Document the fact that the code to be
tested can't be in the same path as your product.

Also, you seem to make a big deal about this code being "commercial".
This rule applies for any publicly distributed product, whether
commercial or otherwise.

Honestly, I think you're going down the wrong road with this.  Have you
looked at other existing test frameworks?  What is yours going to offer
that, say, JUnit doesn't?

Signature

Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>

Arne Vajhøj - 27 Oct 2007 03:50 GMT
>>>>>>> Is it possible for a java app to change it's classpath at runtime.  I
>>>>>>> tried:
[quoted text clipped - 24 lines]
> to do it.... if I can't find a ClassLoader based solution I will have
> to do that but it is down right a) not portable b) evil

You do not have any control over where people put their stuff,
but you have control over your stuff.

If the only thing in classpath is your jar file, then you can
create your own classloader for their stuff and unload and reload
as needed.

Arne
Aryeh M. Friedman - 25 Oct 2007 02:30 GMT
On Oct 24, 9:13 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > On Oct 24, 8:16 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> >>> Is it possible for a java app to change it's classpath at runtime.  I
[quoted text clipped - 13 lines]
> I have a little demo example I often use to illustrate
> (subdir test is not in classpath of program).

Perhaps google ate my previous response.... but as I said several
places (including the linked to thread) almost all my classes *WILL*
be in the classpath... btw as mentioned in an other thread your demo
doesn't quite work once divorced from the code to rewrite the class
(see orginial thread)... so the question remains does the code above
load from "foo" or from the classpath when I do loader.loadClass(...)
Daniel Pitts - 25 Oct 2007 03:26 GMT
>>>>> Is it possible for a java app to change it's classpath at runtime.  I
>>>>> tried:
[quoted text clipped - 16 lines]
> (see orginial thread)... so the question remains does the code above
> load from "foo" or from the classpath when I do loader.loadClass(...)

Here's the scoop.
If its ever on the class path, you can't reload it.  What you're trying
to do is not possible to do without restricting what's on the class
path.  That is not a bad restriction! Just make it happen.

Changing the class path after the fact isn't going to help either.

Signature

Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>

Daniel Pitts - 25 Oct 2007 03:22 GMT
> Is it possible for a java app to change it's classpath at runtime.  I
> tried:
[quoted text clipped - 4 lines]
> reread a class file if it is in the classpath.   See
> http://groups.google.com/group/comp.lang.java.programmer/browse_thread/thread/79
3a9146df18365a/ceaa154348f6f271#ceaa154348f6f271

Once a class is loaded by any class loader, it can not be reloaded by
any other class loader in that same branch of the class-loader tree.

Signature

Daniel Pitts' Tech Blog: <http://virtualinfinity.net/wordpress/>

Roedy Green - 25 Oct 2007 12:39 GMT
On Wed, 24 Oct 2007 23:38:10 -0000, "Aryeh M. Friedman"
<Aryeh.Friedman@gmail.com> wrote, quoted or indirectly quoted someone
who said :

>Is it possible for a java app to change it's classpath at runtime

yes but it requires firing up a new classloader.

See http://mindprod.com/jgloss/classloader.html
Signature

Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.