gpt4 book ai didi

java - 如何查找带有我的注释的所有类 |野蝇JavaEE

转载 作者:行者123 更新时间:2023-12-02 01:50:53 25 4
gpt4 key购买 nike

在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com