strtuts2配置

strut2.0 与 hibernate spring 的整合
1.在 web.xml 文件中的配置

引用
<!--应用上下文 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml</param-value>
<!-- 如果applicationContext.xml在src目录下存放,绿色位置应该为
classpath:applicationContext.xml-->

</context-param>

<!-- spring的监听器,以便在启动时就自动加载spring的配置 -->
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>

<!-- 使用filter加载struts.xml文件 --> <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>


2.在src下添加一个 struts.xml文件

引用
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.i18n.encoding" value="GBK" />
<!-- 将action托管给spring -->
<constant name="struts.objectFactory" value="spring" />
<include file="struts-default.xml" />
<!--strut2上传文件保存的地址-->
<constant name="struts.multipart.saveDir"     value="c:\"></constant>
<package name="struts2" extends="struts-default">
   <action name="index" class="goods">
     <interceptor-ref name="defaultStack" />
<result  name="index">/jsp/index.jsp</result>
             </action>
</package>
</struts>


3.在spring 配置文件中配置
引用
   <bean name="goods" class="com.accp.ssh.action.GoodsAction"
scope="prototype">
</bean>

你可能感兴趣的:(apache,spring,xml,Hibernate,struts)