I am developing a web application.
- The web application generates java classes on the fly. For example it generates class
com.people.Customer.java
- In my code, I dynamically compile this to get com.people.Customer.class and store in some directory say
repository/com/people/Customer.class
which is not on the classpath of my application server.My application server(I am using WebSphere Application Server/Apache Tomcat etc) picks up the classes from theWEB-INF/classes
directory. The Classloader would use this to load the classes. - After compilation I need to load this class so that it becomes accessible to other classes using it after its creation.
- When I use
Thread.currentThread().getContextClassLoader().loadClass(com.people.Customer)
obviously the Classloader is not able to load the class, since its not on the classpath(not inWEB-INF/classes
). Due to similar reasons,getResource(..)
orgetResourceAsStream(..)
also does not work.
I need a way to :
Read the class Customer.class
maybe as a stream (or any other way would do) and then load it. Following are the constraints:
- I cannot add the repository folder to the
WEB-INF/classes
folder. - I cannot create a new Custom ClassLoader. If I create a new ClassLoader and this loads the class, it will not be accessible to its parent ClassLoader.
Is there any way of achieving this?
If not this, in the worse case, is there a way of overriding the default class loader with a custom class loader for web applications the same classloader should be used to load applications throughout entire lifecycle of my web application.
Appreciate any solution :)