我尝试在servlet中实现插件系统。我编写了一个类来加载插件,该类使用URLClassLoader来加载jar文件,并使用Class.forname来加载该类。
这是我的代码:
这部分创建url类Loader:
public PluginLoader(ServletContext context, String[] pluginName, String[] classToLoad) throws PluginLoaderException{
this.context = context;
urls= new URL[pluginName.length];
nameToURL(pluginName);
//create class loader
loader = new URLClassLoader(urls);
//loading the plug-in
loadPlugin(classToLoad);
}
这个初始化URL:
private void nameToURL(String[] pluginName) throws PluginLoaderException{
try{
for(int i=0;i<pluginName.length;i++){
urls[i] = context.getResource(pluginName[i]);
}
}
最后,这个创建对象:
private void loadPlugin(String[] classToLoad) throws PluginLoaderException{
try{
iTest = (ITest) Class.forName(classToLoad[0],true,loader).newInstance();
}
catch(Exception e){
throw new PluginLoaderException(e.toString());
}
}
我设法创建了对象,因为我可以操纵它并检索它实现的接口,但是我不能在ITest中强制转换它以在应用程序中操纵它。我有一个ClassCastException tplugin.toto.Toto无法转换为fr.test.inter.ITest。
这很奇怪,因为Toto实现了ITest。
有人有主意吗?
谢谢
最佳答案
您已经创建了一个classoader问题-使用instanceof ITest
进行测试时,您使用的是默认类加载器加载的ITest
副本,但是您正在测试URLClassloader
加载的实例。该类加载器已经加载了自己的ITest
副本,就JVM而言,它是完全不同的类型。