从jar文件加载类表示为字节数组的问题

时间:2017-02-14 11:42:10

标签: java angularjs spring classloader dynamic-class-loaders

我试图从加载在字节数组上的jar文件创建一个类的实例。

我收到了两个参数:
1. byte []表示具有所需类的jar文件 2.合格的班级名称

当我在本地测试它时,它按预期工作,但是当我远程上传完全相同的jar文件和相同的限定类名时(使用Spring MVC实现的Web应用程序和Tomcat服务器中部署的前端AngularJS)它无法找到所需的类别:

抛出java.lang.ClassNotFoundException

当我调试时,事实证明,正确调用了类加载器,但没有从jar加载任何类。

如果有人能说出造成这种差异的原因是什么,或者我如何以其他方式实现这一功能,我将不胜感激

一个加载类并返回它的实例的方法:

public static <T> T getInstanceOfLoadedClass(byte[] jarFileBytes, String qualifiedClassName) throws ClassFromJarInstantiationException {
    LOGGER.info("Getting instance of class from loaded jar file. Class name: " + qualifiedClassName);
    try {
        return (T) Class.forName(qualifiedClassName, true, new ByteClassLoader(jarFileBytes)).newInstance();
    } catch (InstantiationException | IllegalAccessException | IOException | ClassNotFoundException | NoSuchFieldException e) {
        LOGGER.error("Exception was thrown while reading jar file for " + qualifiedClassName + "class.", e);
        throw new ClassFromJarInstantiationException(e);
    }
}

Custom ByteClassLoader:

public class ByteClassLoader extends ClassLoader {
    private static final Logger LOGGER = Logger.getLogger(ByteClassLoader.class);
    private final byte[] jarBytes;
    private final Set<String> names;

    public ByteClassLoader(byte[] jarBytes) throws IOException {
        this.jarBytes = jarBytes;
        this.names = loadNames(jarBytes);
    }

    private Set<String> loadNames(byte[] jarBytes) throws IOException {
        Set<String> set = new HashSet<>();
        try (ZipInputStream jis = new ZipInputStream(new ByteArrayInputStream(jarBytes))) {
            ZipEntry entry;
            while ((entry = jis.getNextEntry()) != null) {
                set.add(entry.getName());
            }
        }
        return Collections.unmodifiableSet(set);
    }

    @Override
    public InputStream getResourceAsStream(String resourceName) {
        if (!names.contains(resourceName)) {
            return null;
        }
        boolean found = false;
        ZipInputStream zipInputStream = null;
        try {
            zipInputStream = new ZipInputStream(new ByteArrayInputStream(jarBytes));
            ZipEntry entry;
            while ((entry = zipInputStream.getNextEntry()) != null) {
                if (entry.getName().equals(resourceName)) {
                    found = true;
                    return zipInputStream;
                }
            }
        } catch (IOException e) {
            LOGGER.error("ByteClassLoader threw exception while reading jar byte stream for resource: "+resourceName, e);
            e.printStackTrace();
        } finally {
            if (zipInputStream != null && !found) {
                try {
                    zipInputStream.close();
                } catch (IOException e) {
                    LOGGER.error("ByteClassLoader threw exception while closing jar byte stream for resource: "+resourceName, e);
                    e.printStackTrace();
                }
            }
        }
        return null;
    } }

1 个答案:

答案 0 :(得分:0)

问题在于,在测试时,需要加载的类是在一个类加载器的范围内 希望它可以帮助某人解决这个问题,因为它很容易被遗漏。