从类路径/类加载器中检索所有用户定义的类
我计划编写基于注释的方法。
我想在主程序运行时找到所有用户定义的类。我想避免所有基于 SDK 的类,并仅在类路径中列出所有类。
这是因为,我可以在类路径中可用的所有类上运行注释读取。或者如果有任何其他方法请告诉我。
如何做到这一点?
I am planning to write annotation based approach.
i want to find all user defined class when the main program runs. I want to avoid all SDK based classes and list all classes only in the classpath.
This is because, i can run my annotation reading on all my class that available in the classpath. or if any other approach please let me know.
How to do this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用Spring的 PathMatchingResourcePatternResolver。
You could use Spring's PathMatchingResourcePatternResolver.