在 Java 中查找带注释的包?
查找在 package-info.java
中使用特定包级注释进行注释的所有包的最简洁方法是什么?
What is the cleanest way to find all packages annotated with a particular package-level annotation in their package-info.java
?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用reflections 库之类的东西来完成大部分类路径扫描工作;其他的可以在 Spring 等库中找到。
Use something like the reflections library to do the bulk of your classpath scanning work; others are available in libraries like Spring/etc.
是的,
http://java.sun.com/docs/books /jls/third_edition/html/packages.html
Yes,
http://java.sun.com/docs/books/jls/third_edition/html/packages.html