Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 bean 加载FileSystemXmlApplicationContext到上下文中。
FileSystemXmlApplicationContext
包括一些额外的资源文件:
import resource="beandef_1.xml" import resource="beandef_2.xml"
我正在寻找找出 bean 定义源文件的可能性。
是否可以确定从哪个 xml 文件加载 bean?
很多谢谢
尝试这个
FileSystemXmlApplicationContext ctx = ... String res = ctx.getBeanFactory().getBeanDefinition("bean1").getResourceDescription();