- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 JavaEE 部署中查找具有特定注释的所有类的最佳方法是什么?我使用 WildFly ApplicationServer 并创建了自己的注释。在部署开始时,我希望找到带有注释的所有类并缓存它们以供以后访问。我必须做什么才能保护资源?
最佳答案
首先,Wildfly 具有模块化的类加载结构。在 Wildfly doc :
Since JBoss AS 7, Class loading is considerably different to previous versions of JBoss AS. Class loading is based on the JBoss Modules project. Instead of the more familiar hierarchical class loading environment, WildFly's class loading is based on modules that have to define explicit dependencies on other modules. Deployments in WildFly are also modules, and do not have access to classes that are defined in jars in the application server unless an explicit dependency on those classes is defined.
如上所述,如果您有更多 .ear 或 .war 包,它们无法看到彼此内的类,除非定义了显式依赖项。每个模块都可以看到自己的类,因此每个模块应该加载和缓存自己的类。您无法使用单个类和单个方法加载所有类。
通过以下代码,您可以看到模块中所有加载的类。
Field f = ClassLoader.class.getDeclaredField("classes");
f.setAccessible(true);
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
Vector<Class> classes = (Vector<Class>) f.get(classLoader);
关于java - 如何查找带有我的注释的所有类 |野蝇JavaEE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57427655/
我是一名优秀的程序员,十分优秀!