怎么查看spring所有注入的bean

2024-11-30 21:46:38
推荐回答(1个)
回答1:

如何取得Spring管理的bean (请用第3种方法):
1、servlet方式加载时,
【web.xml】
Xml代码

springMVC
org.springframework.web.servlet.DispatcherServlet

contExtConfigLocation
classpath*:/springMVC.xml

1

spring容器放在ServletContext中的key是org.springframework.web.servlet.FrameworkServlet.CONTEXT.springMVC
注意后面的springMVC,是你的servlet-name配置的值,注意适时修改。