web.xml配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext.xml,classpath:applicationContext-extend.xml
</param-value>
</context-param>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
struts.properties
1 struts.objectFactory=spring
2 struts.objectFactory.spring.autoWire=auto
applicationContext.xml
01 <!-- 配置ibatis -->
02 <bean id="sqlMapClient"
03 class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
04 <property name="configLocation">
05 <value>classpath:SqlMapConfig.xml</value>
06 </property>
07 <property name="dataSource">
08 <ref bean="dataSource" />
09 </property>
10 </bean>
1 <!-- 配置DAO -->
2 <bean id="AdminDAO" class="cn.edu.hit.mis.dao.AdminDAOImpl">
3 <property name="sqlMapClient">
4 <ref bean="sqlMapClient" />
5 </property>
6 </bean>
其他地方都一样
posted on 2009-10-13 17:51
super_nini 阅读(723)
评论(0) 编辑 收藏