【发布时间】:2026-02-10 04:20:03
【问题描述】:
目标是从远程位置加载一堆 jar 文件作为插件,在 CDI 上下文中初始化它们。
然后一个 servlet 可以像这样触发事件:
testEvent.fire(new EventTest("some message"));
插件将能够观察到哪些。示例插件如下所示:
public class Plugin{
public void respond (@Observes EventTest e){
//does something with the even object
}
}
这是加载插件的代码。取自https://jaxenter.com/tips-for-writing-pluggable-java-ee-applications-105281.html 并重新设计了这个类与servlet 类位于同一个包中。它具有必要的 META-INF/services 目录和 javax.enterprise.inject.spi.Extension 文件,该文件有一行 - 扩展类的完全限定名称:main.initplugins.InitPlugins。
package main.initplugins;
import java.sql.SQLException;
import java.sql.Connection;
import java.sql.Statement;
import java.util.jar.JarInputStream;
import java.util.jar.JarEntry;
import java.lang.ClassLoader;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.enterprise.event.Observes;
import javax.enterprise.inject.spi.BeforeBeanDiscovery;
import javax.enterprise.inject.spi.BeanManager;
public class InitPlugins implements javax.enterprise.inject.spi.Extension{
Logger log = Logger.getLogger("");
private java.util.Set<Class<?>> classes;
public void beforeBeanDiscovery(@Observes BeforeBeanDiscovery bbd, BeanManager bm){
log.log(Level.INFO, "LOAD PLUGINS HERE");
loadFromFiles();
try{
for (Class<?> cl: classes){
final javax.enterprise.inject.spi.AnnotatedType<?> at = bm.createAnnotatedType(cl);
bbd.addAnnotatedType(at);
log.log(Level.INFO, "ADD ANNOTATED TYPE FOR: " + cl.getName());
}
log.log(Level.INFO, "ANNOTATED TYPE CREATION COMPLETE");
} catch (Exception ex){
log.log(Level.INFO, "FAIL TO CREATE ANNOTATED TYPE: " + ex.getMessage());
}
}
public void loadFromFiles() {
classes = new java.util.LinkedHashSet<Class<?>>();
try{
//connect to a remote location. In this case it will be a database that holds the bytes of the .jar files
Connection dbConnection = java.sql.DriverManager.getConnection("jdbc:mysql://localhost/testdb?user=user&password=passwd");
Statement statement = dbConnection.createStatement();
java.sql.ResultSet plugins = statement.executeQuery("select * from plugins"); //the plugins table contain 2 columns: 1) fileName as primary key, 2) longblob that hold raw byte of the jar file
while (plugins.next()){
JarInputStream js = new JarInputStream(new java.io.ByteArrayInputStream(plugins.getBytes(2))); //load them as jar files, 2 is the index for the raw byte column that holds the jar file
JarEntry je;
while((je = js.getNextJarEntry()) != null){
//open each jar file, scan through file contents and find the .class files, then extract those bytes and pass them in the ClassLoader's defineClass method
if(!je.isDirectory() && je.getName().endsWith(".class")){
String className = je.getName().substring(0, je.getName().length() - 6).replace("/", ".");
log.log(Level.INFO, "class name is: " + className);
java.io.ByteArrayOutputStream classBytes = new java.io.ByteArrayOutputStream();
byte[] bytes;
try{
byte[] buffer = new byte[2048];
int read = 0;
while(js.available() > 0){
read = js.read(buffer, 0, buffer.length);
if(read > 0){
classBytes.write(buffer, 0, read);
}
}
bytes = classBytes.toByteArray();
//code below taken from: https://jaxenter.com/tips-for-writing-pluggable-java-ee-applications-105281.html
java.security.ProtectionDomain protDomain = getClass().getProtectionDomain();
ClassLoader cl = Thread.currentThread().getContextClassLoader();
Method tempDefineClassMethod = null;
for (Method tempMethod : ClassLoader.class.getDeclaredMethods()){
if(tempMethod.getName().equals("defineClass") && tempMethod.getParameterCount() == 5){
tempDefineClassMethod = tempMethod;
break;
}
}
final Method defineClassMethod = tempDefineClassMethod;
try{
java.security.AccessController.doPrivileged(new java.security.PrivilegedExceptionAction(){
@Override
public java.lang.Object run() throws Exception{
if (!defineClassMethod.isAccessible()){
defineClassMethod.setAccessible(true);
}
return null;
}
});
log.log(Level.INFO, "Attempting load class: " + className + " with lenght of: " + bytes.length);
defineClassMethod.invoke(cl, className, bytes, 0, bytes.length, protDomain);
classes.add(cl.loadClass(className));
log.log(Level.INFO, "Loaded class: " + je.getName());
} catch (Exception ex){
log.log(Level.INFO, "Error loading class: " + ex.getMessage());
ex.printStackTrace();
}
} catch (Exception ex){
log.log(Level.INFO, "Error loading bytes: " + ex.getMessage());
}
}
}
}
} catch (SQLException ex){
log.log(Level.SEVERE, "Fail to get db connection or create statement in plugin ejb: ".concat(ex.getMessage()));
} catch (Exception ex){
log.log(Level.SEVERE, "Fail to get db connection or create statement in plugin ejb: ".concat(ex.getMessage()));
}
}
}
而且由于某种原因它不起作用。在任何阶段都不会引发错误。当我从 servlet 触发事件时,加载的插件不会拾取它。我做错了什么?
【问题讨论】:
-
您是否看到指示类已加载的日志消息?另外,你如何部署你的应用程序?什么容器(包括版本)
-
是的,所有日志消息都会显示,包括@Observable 方法中的消息:“添加注释类型:”+ ...和“注释类型创建完成”。使用 Wildfly 10.1
-
只是想知道,您的
beans.xml是什么样的?当您向Plugin添加范围时,这是否会起作用,例如@ApplicationScoped? -
我的 beans.xml 在包含 servlet 和 InitPlugins 类的 servlet 包中。它是带有 bean-discovery-mode="all" 属性的标准 beans.xml。将 @javax.enterprise.context.ApplicationScoped 添加到插件,但它仍然不会接收从 servlet 触发的事件。还尝试了另一个服务器 - glassfish,但更糟糕的是 - 它甚至不会执行带有扩展的 InitPlugins 类。
-
要补充我之前的评论,您可以尝试使用“标准”类加载器而不是 TCCL。例如。使用加载扩展的相同 CL(您通过
InitPlugins.class.getClassLoader()获得的那个)。
标签: java servlets jakarta-ee dependency-injection cdi