Java:加载用户定义的接口实现(来自配置文件)

时间:2015-08-10 15:58:53

标签: java dynamic reflection interface instantiation

我需要允许用户通过配置文件在运行时指定接口的实现,类似于这个问题:Specify which implementation of Java interface to use in command line argument

但是,我的情况不同,因为在编译时不知道实现,所以我将不得不使用反射来实例化类。我的问题是......我如何构建我的应用程序,以便我的类可以看到新实现的.jar,以便它可以在我调用时加载类:

Class.forName(fileObject.getClassName()).newInstance()

1 个答案:

答案 0 :(得分:3)

评论是正确的;只要.jar文件在您的类路径中,您就可以加载该类。

我过去曾经使用过这样的东西:

public static MyInterface loadMyInterface( String userClass ) throws Exception
{
    // Load the defined class by the user if it implements our interface
    if ( MyInterface.class.isAssignableFrom( Class.forName( userClass ) ) )
    {
        return (MyInterface) Class.forName( userClass ).newInstance();
    }
    throw new Exception("Class "+userClass+" does not implement "+MyInterface.class.getName() );
}

String userClass是配置文件中用户定义的类名。

修改

考虑到这一点,甚至可以使用以下内容加载用户在运行时指定的类(例如,在上传新类之后):

public static void addToClassPath(String jarFile) throws IOException 
{
    URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
    Class loaderClass = URLClassLoader.class;

    try {
        Method method = loaderClass.getDeclaredMethod("addURL", new Class[]{URL.class});
        method.setAccessible(true);
        method.invoke(classLoader, new Object[]{ new File(jarFile).toURL() });
    } catch (Throwable t) {
        t.printStackTrace();
        throw new IOException( t );
    }
}

我记得在SO(当然)的某处使用反射找到了addURL()调用。