Hi,
Trying to use hot deploy to reload MyClass.components.xml I had an ClassNotFoundException.
The installComponentFromXmlElement method of Initialization try to load the class with
Reflections.classForName(className), wich use the current thread classloader, the
WebAppClassloader, not hotDeployClassloader. Fix with the code above:
| Class<?> clazz = null;
| try
| {
| if (hotDeployClassLoader != null) {
| clazz = hotDeployClassLoader.loadClass(className)
| }
| clazz = Reflections.classForName(className);
| }
|
|
Is this the right way?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035983#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...