spring怎么读取配置文件中的BEAN
发布网友
发布时间:2024-05-05 04:06
我来回答
共1个回答
热心网友
时间:2024-07-14 08:05
<!-- 指定spring配置文件位置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
<!--加载多个spring配置文件 -->
/WEB-INF/applicationContext.xml, /WEB-INF/action-servlet.xml
</param-value>
</context-param>
<!-- 定义SPRING*,加载spring -->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
web服务器会加载listener,这个listener的类是spring写的。他会加载上边的配置文件,并按配置文件初始化
org.springframework.web.context.ContextLoaderListener
就这个