springMVC+spring集成
- 集成spring MVC
- 把annotations-api.jar拷贝到/WEB-INF/lib/目录下
(该包位于apache-tomcat-6.0.14\lib目录下,完成以注解的方式声明对象的属性通过hib-config.xml配置文件自动注入。可省略相应的get和set方法。)
- 在web.xml文件中配置Spring的过滤器
代码如下:
<!--Spring 上下文监听器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--Spring 配置文件路径 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/hib-config.xml</param-value>
</context-param>
- 创建hib-config.xml配置文件
hib-config.xml 应放在/WEB-INF/目录下。
配置模版如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
">
</beans>
在hib-config.xml中配置service
<bean id="loginService" class="com.zte.service.LoginService">
</bean>
说明:userDao属性为通过配置在生成loginService对象时自动注入
网友评论