- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标是从远程位置加载一堆 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 触发事件时,加载的插件不会拾取它。我做错了什么?
最佳答案
从 CDI 的角度来看,您的方法应该可以正常工作。
这里的问题是类加载,特别是在考虑任何非扁平部署(除了纯 SE 之外的任何其他部署)时。
您选择使用 TCCL,例如你做了:
ClassLoader cl = Thread.currentThread().getContextClassLoader();
在某些应用程序服务器/servlet 中,可能会为您提供一个与加载扩展本身的类加载器 (InitPlugin
) 不同的类加载器。
相反,您应该使用加载扩展的相同 CL,因为它将是处理 CDI bean 的 CL。所以,只需这样做:
ClassLoader cl = InitPlugins.class.getClassLoader()
注意: 请注意,您正在未知的水域航行。此行为/修复可能无法移植。
关于带有动态类加载的 java CDI 扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43837256/
我想使用 li 和 ul 制作一个多级下拉列表,以便显示我博客中按年和月排序的所有文章。我希望我的下拉菜单看起来像 Google Blogspot 下拉菜单: 这是我的 CSS 和 HTML 代码 u
我在 Win 7 64 机器上将 CodeBlocks 与 gcc 4.7.2 和 gmp 5.0.5 结合使用。开始使用 gmpxx 后,我看到一个奇怪的段错误,它不会出现在 +、- 等运算符中,但
我正在使用 tern 为使用 CodeMirror 运行的窗口提供一些增强的智能感知,它工作正常,但我遇到了一个问题,我想添加一些自定义“types”,可以这么说,这样下拉列表中它们旁边就有图标了。我
我正在尝试让我的 PC 成为 Android 2.3.4 设备的 USB 主机,以便能够在不需要实际“附件”的情况下开发 API。为此,我需要将 PC 设置为 USB 主机和“设备”(在我的例子中是运
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
我在设置服务器方面几乎是个新手,但遇到了一个问题。我有一个 Ubuntu 16.04 VPS 并安装了 Apache2 和 Tomcat7。我正在为 SSL 使用 LetsEncrypt 和 Cert
我在一个基于谷歌地图的项目上工作了超过 6 个月。我使用的是 Google Maps API V1 及其开发人员 API key 。当我尝试发布应用程序时,我了解到 Google API V1 已被弃
我是 Python 的新手,所以如果我对一些简单的事情感到困惑,请原谅。 我有一个这样的对象: class myObject(object): def __init__(self):
这个问题已经有答案了: How can I access object properties containing special characters? (2 个回答) 已关闭 9 年前。 我正在尝
我有下面的 CSS。我想要的是一种流体/液体(因为缺乏正确的术语)css。我正在为移动设备开发,当我改变模式时 从纵向 View 到陆地 View ,我希望它流畅。现在的图像 在陆地 View 中效
我正在尝试使用可以接受参数的缓存属性装饰器。 我查看了这个实现:http://www.daniweb.com/software-development/python/code/217241/a-cac
这个问题在这里已经有了答案: Understanding slicing (36 个答案) 关闭 6 年前。 以a = [1,2,3,4,5]为例。根据我的直觉,我认为 a[::-1] 与 a[0:
mysqldump -t -u root -p mytestdb mytable --where=datetime LIKE '2014-09%' 这就是我正在做的事情,它会返回: mysqldum
我正在制作销售税计算器,除了总支付金额部分外,其他一切都正常。在我的程序中,我希望能够输入一个数字并获得该项目的税额我还希望能够获得支付的总金额,包括交易中的税金。到目前为止,我编写的代码完成了所有这
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我是否必须进行任何额外的设置才能让 apache-airflow 在任务失败时向我发送电子邮件。我的配置文件中有以下内容(与默认值保持不变): [email] email_backend = airf
这个问题在这里已经有了答案: What does the $ symbol do in VBA? (5 个回答) 3年前关闭。 使用返回字符串(如 Left)的内置函数有什么区别吗?或使用与 $ 相同
我有一个用VB6编写的应用程序,我需要使用一个用.NET编写的库。有什么方法可以在我的应用程序上使用该库吗? 谢谢 最佳答案 这取决于。您可以控制.NET库吗? 如果是这样,则可以修改您的库,以便可以
当我创建一个以 ^ 开头的类方法时,我尝试调用它,它给了我一个错误。 class C { method ^test () { "Hi" } } dd C.new.test; Too m
我已经使用 bower 安装了 angularjs 和 materialjs。 凉亭安装 Angular Material 并将“ngMaterial”注入(inject)我的应用程序,但出现此错误。
我是一名优秀的程序员,十分优秀!