Spring之在Web应用使用配置方式
在 WEB 环境下使用 Spring
1) 需要额外加入的 jar 包:
spring-web-4.0.0.RELEASE.jar
2) Spring 的配置文件和非 WEB 环境没有什么不同
3) 需要在 web.xml 文件中加入如下配置:
<!-- 配置 Spring 配置文件的名称和位置 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <!-- 启动 IOC 容器的 ServletContextListener --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
相关推荐
丽丽 2020-10-30
一青年 2020-08-13
lantingyue 2020-07-30
yuanye0 2020-06-21
akcsdno 2020-06-15
Julywhj 2020-06-09
MrFuWen 2020-06-06
neweastsun 2020-03-30
kong000dao0 2020-03-07
JayFighting 2020-02-24
mokingone 2012-09-03
六天 2013-05-13
数据库工具开发 2013-05-10
书弋江山 2020-01-14
SoarFly00 2020-01-14
akcsdno 2020-01-04
htofly 2020-01-04
yuanye0 2020-01-04
CoderBoy 2019-12-30