web中如何spring如何配置
Posted 田园沃土
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web中如何spring如何配置相关的知识,希望对你有一定的参考价值。
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
spring会默认在WEB-INF目录下查找applicationContext.xml文件
如果有多个配置文件
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext-hibernate.xml
<!-- classpath:applicationContext-hibernate_jndi.xml-->
classpath:applicationContext-dao.xml
classpath:applicationContext-service.xml
classpath:spring/proxy/system.xml,
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
以上是关于web中如何spring如何配置的主要内容,如果未能解决你的问题,请参考以下文章