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如何配置的主要内容,如果未能解决你的问题,请参考以下文章

eclipse3.5如何配置spring web开发环境

如何在 web.xml 中配置 spring-boot servlet?

如何在web项目中配置Spring的Ioc容器

如何在spring中配置定时任务

如何在spring中配置定时任务

如何使用 Spring cloud config server 来服务 web-ui 配置