如何在使用 Spring IoC 时跟踪所有 @Autowired 内容?
在 Spring @Autowired 用法 问题上,大多数人回答说,如果可能的话,他们不喜欢使用配置文件。乍一看,这似乎是一个很好的答案。
然而,一旦你有一个相当大的应用程序,它使用 Spring IoC 并使用注释 @Autowired、@Service 等自动装配所有内容,你一定会遇到这个问题:你不再能够跟踪你的 bean 依赖项。
你如何处理这个问题?
使用 SpringSource 工具套件,我们可以根据配置文件创建依赖关系图。
有没有任何工具可以与 @Autowired 的东西做同样的事情? (我知道图表必须在运行时创建)。
On Spring @Autowired usage question most of the people answer they prefer not using configuration files, if possible. It seems like a good answer at the first glance.
However, once you have quite a big application which uses Spring IoC and autowires all the stuff using annotations @Autowired, @Service, etc. you must hit this problem: you no longer are able to keep track of your bean dependencies.
How do you deal with that?
Using SpringSource Tool Suite one can create graphs of dependencies on the basis of configuration files.
Is there any tool out there which does the same with @Autowired stuff? (I understand graphs would have to be created on runtime).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现 BeanFactoryAware 并将传递到 setBeanFactory() 的工厂转换为 DefaultListableBeanFactory。然后使用 DefaultListableBeanFactory.getBeanDefinitionNames() 和 DefaultListableBeanFactory.getDependencyForBean() 生成依赖关系图。
Implement BeanFactoryAware and cast the factory that is passed into setBeanFactory() to a DefaultListableBeanFactory. Then use DefaultListableBeanFactory.getBeanDefinitionNames() and DefaultListableBeanFactory.getDependenciesForBean() to generate the dependency graph.