is there a way to decide during runtime, which class from which jar (deployed on jboss) will be used?
Here is an example:
VERSION1.JAR
package com.something;
public class MyObject {
public void saySomething() {
System.out.println("Output from version 1");
}
}
VERSION2.JAR
package com.something;
public class MyObject {
public void saySomething() {
System.out.println("Output from version 2");
}
}
So in both jars are the same class within the same package but they do different things. Now I want to load MyObject but tell him from which jar I want to use that:
package com.main
public class Main{
public static void main(String[] args) {
MyObject v1 = new MyObject();
v1.saySomething();
MyObject v2 = new MyObject();
v2.saySomething();
}
}
Is that possible? I am using Jboss as application server and I am doing that within a ejb project. So this example is just to explain what I mean. I think maybe with help of the context?