快速业务通道

整合Spring与Struts的几种方法 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
dex" path="/WEB-INF/jsp/index.jsp"/> <forward name="show" path="/WEB-INF/jsp/show.jsp"/> </action> <action path="/input" type="org.apache.struts.actions.ForwardAction" parameter="/WEB-INF/jsp/input.jsp"/> </action-mappings> <!--注册ContextLoaderPlugIn --> <plug-in className="org.springframework.web.struts.ContextLoaderPlugIn"> <set-property property="contextConfigLocation" value="/WEB-INF/config.xml" /> </plug-in> <message-resources parameter="messages"/> </struts-config>

整合Spring与Struts的几种方法(2)

时间:2011-03-14 Fruitful

Step 2:修改Spring的配置文件config.xml

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"> <beans> <bean id=”helloWorldService” class=”com.strutstest.service.impl.HelloWorldServiceImpl”> </bean> <!--注意此处的映射必须与Struts中的动作对应--> <bean name=”/helloWorld” class=”com.strutstest.action.HelloWorldAction”> <property name=”helloWorldService”> <ref bean=”helloWorldService”/> </property> </bean> </beans>

Step 3:定义作为Model的Action Form类及相应接口、实现

定义Action Form:

package com.strutstest.action; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionError; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMapping; public class HelloWorld extends ActionForm { private String msg = null; public void setMsg(String msg) { this.msg = msg; } public String getMsg() { return this.msg; } public void reset(ActionMapping mapping, HttpServletRequest req) { this.msg = null; } public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { ActionErrors errors = new ActionErrors(); if("".equals(getMsg())) { errors.add("msg",new ActionError("error")); } return errors; } }

定义HelloWorld类的接口:

package com.strutstest.service; import com.strutstest.action.HelloWorld; public interface HelloWorldService { public abstract String addMsg(HelloWorld helloWorld); }

定义接口的实现:

package com.strutstest.service.impl; import com.strutstest.action.HelloWorld; import com.strutstest.service.HelloWorldService; public class HelloWorldServiceImpl implements HelloWorldService { public String addMsg(HelloWorld helloWorld) { helloWorld.setMsg("Hello World... " + helloWorld.getMsg()); return helloWorld.getMsg(); } }

整合Spring与Struts的几种方法(3)

时间:2011-03-14 Fruitful

Step 4:定义Action

package com.strutstest.action; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.s

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号