Spring框架 - 预加载bean并在不知道名称的情况下循环它们
有没有一种方法可以立即从 XML 文件中预加载所有 bean,然后在不知道它们的 bean 名称的情况下循环遍历它们?我已经看到显然可以进行预加载,但我还没有找到在不知道其特定 bean 名称的情况下访问它们的方法。谢谢!
Is there a way I can preload all beans from the XML file at once and then loop through them without knowing their bean names? I've seen that it is obviously possible to do the preloading but I haven't seen a way to access them without knowing their specific bean names. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 getBeanDefinitionNames() 来自 XmlBeanFactory 类。来自 Java 文档:-
示例:
希望这有帮助!
You can use getBeanDefinitionNames() from the XmlBeanFactory class. From Java Docs:-
Example:
Hope this helps!