struts spring 整合

 最近发现刚学过的知识忘得差不多了,写一写,记录一下。^_^

 

一、拷贝相关的jar

二、拷贝applicationContext.xmlstruts.xml文件到src文件夹下。

三、web.xml文件中添加

Code:
  1. <!-- 配置struts核心控制器-->  
  2.     <filter>  
  3.         <filter-name>struts2</filter-name>  
  4.         <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>  
  5.     </filter>  
  6.   
  7.     <filter-mapping>  
  8.         <filter-name>struts2</filter-name>  
  9.         <url-pattern>/*</url-pattern>  
  10.     </filter-mapping>  
  11.   
  12.     <!-- 配置Spring监听器 -->  
  13.     <listener>  
  14.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  15.     </listener>  
  16.   
  17.     <!-- 用来定位spring XML文件的上下文配置 -->  
  18.     <context-param>  
  19.         <param-name>contextConfigLocation</param-name>  
  20.         <param-value>/WEB-INF/applicationContext-*.xml,classpath:applicationContext-*.xml</param-value>  
  21.     </context-param>  

四、编写LoginAction.java

Code:
  1. package onlyfun.gray.action;  
  2.   
  3. import com.opensymphony.xwork2.ActionSupport;  
  4.   
  5. public class LoginAction extends ActionSupport {  
  6.   
  7.     private String username;  
  8.       
  9.     private String password;  
  10.   
  11.     public String getUsername() {  
  12.         return username;  
  13.     }  
  14.   
  15.     public void setUsername(String username) {  
  16.         this.username = username;  
  17.     }  
  18.   
  19.     public String getPassword() {  
  20.         return password;  
  21.     }  
  22.   
  23.     public void setPassword(String password) {  
  24.         this.password = password;  
  25.     }  
  26.       
  27.     @Override  
  28.     public String execute() throws Exception {  
  29.         // TODO Auto-generated method stub  
  30.         if(username.equalsIgnoreCase("gray") && password.equalsIgnoreCase("gray")) {  
  31.             return SUCCESS;  
  32.         }  
  33.         return INPUT;  
  34.     }  
  35.       
  36. }  

五、applicationContext.xml中添加

Code:
  1. <bean id="loginAction" class="onlyfun.gray.action.LoginAction"></bean>  

六、struts.xml中添加

Code:
  1.  <!-- 配置struts.objectFactory属性值 -->  
  2.     <constant name="struts.objectFactory" value="spring"></constant>  
  3.   
  4. 和  
  5.   
  6. <action name="loginAction" class="loginAction">  
  7.         <result name="success">/success.jsp</result>  
  8.         <result name="input">/index.jsp</result>  
  9. </action>  

七、把应用程序发布到tomcat。

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值