首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 开发语言 > Java开发 > 正文

MappingDispatchAction的用法

作者:cocomyyz 来源: 日期:2013-08-17 23:30:29 人气:4 加入收藏 评论:0 标签:java

写个Action继承MappingDispatchAction:

public class DoNothingAction extends MappingDispatchAction {

public ActionForward add(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) {
  System.out.println("ADD method was invoked.");
  return mapping.findForward("index");
}

public ActionForward update(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) {
  System.out.println("UPDATE method was invoked.");
  return mapping.findForward("index");
}
}


struts-config.xml中配置:

<action path="/addSomeThing" type="com.yourcompany.struts.action.DoNothingAction"
   parameter="add"
   scope="request">
   <forward name="index" path="/index.jsp"></forward>
   </action>
   
   <action path="/updateSomeThing" type="com.yourcompany.struts.action.DoNothingAction"
   parameter="update"
   scope="request">
   <forward name="index" path="/index.jsp"></forward>
   </action>

页面中这样用:

<a href="addSomeThing.do">Execute ADD method</a><br>
   <a href="updateSomeThing.do">Execute UPDATE method</a>


本文网址:http://www.mingyangnet.com/html/java/186.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
上一篇: hibernate入门
更多>>网友评论
发表评论
编辑推荐
  • 没有资料