
|
If you were logged in you would be able to see more operations.
|
|
|
|
Included XWork library's com.opensymphony.xwork.ObjectFactory.getClassInstance calls com.opensymphony.util.ClassLoaderUtil which actually exists in the webwork-2.2.jar as com.opensymphony.util.ClassLoaderUtils.
Fails on this error when running a simple example.
|
|
Description
|
Included XWork library's com.opensymphony.xwork.ObjectFactory.getClassInstance calls com.opensymphony.util.ClassLoaderUtil which actually exists in the webwork-2.2.jar as com.opensymphony.util.ClassLoaderUtils.
Fails on this error when running a simple example. |
Show » |
|
public Class getClassInstance(String className) throws ClassNotFoundException {
if (ccl != null) {
return ccl.loadClass(className);
}
return ClassLoaderUtil.loadClass(className, this.getClass());
}
Can not find any issue with this...
And the com.opensymphony.webwork.util.ClassLoaderUtils was not used here, instead the ClassLoaderUtil from oscore was used...
Can you please check this again?