如何在使用 Spring IoC 时跟踪所有 @Autowired 内容?

发布于 2024-11-04 21:57:44 字数 382 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捂风挽笑 2024-11-11 21:57:44

实现 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文