[ajug-members] multiple jar versionsfor one application

Chris Abney Chris.Abney at theice.com
Thu May 1 10:25:21 EDT 2008


Does any one know of a good way to access multiple versions of the same
Jar file from one application.
 
For example:


public class myClass {
:
   public void doIt() {
      org.chrisabney.functors.WorkerBee daddyBee = new
org.chrisabney.functors.WorkerBee();  //The older version 
      org.chrisabney.functors.WorkerBee sonBee   = new
org.chrisabney.functors.WorkerBee();  //The newer version

      daddyBee.doIt(); //The old boring way
      sonBee.doIt();   //The new wacky way
   }
}
 

 

Chris Abney




More information about the ajug-members mailing list