博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java的LookupDispatchAction 用法
阅读量:6819 次
发布时间:2019-06-26

本文共 809 字,大约阅读时间需要 2 分钟。

hot3.png

1.html 代码

 <html:form action="/test" method="post">

     <html:submit property="action">
            <bean:message key="toone"/>
      </html:submit><br>
     <html:submit property="action">
            <bean:message key="totwo"/>
     </html:submit>
  </html:form>
2.java 代码

public ActionForward one(ActionMapping mapping, ActionForm form,

   HttpServletRequest request, HttpServletResponse response)
{
    TestForm testForm = (TestForm) form;
    return mapping.findForward("toone");
}
public ActionForward two(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response)
{
    TestForm testForm = (TestForm) form;
    return mapping.findForward("totwo");
}
 @Override
 protected Map getKeyMethodMap()
{
   Map map = new HashMap();
   map.put("toone", "one");
   map.put("totwo", "two");
   return map;
 }

转载于:https://my.oschina.net/linuxred/blog/33255

你可能感兴趣的文章
配置php开发环境
查看>>
函数的调用过程(栈帧)
查看>>
MySQL主从复制与lvs+keepalived单点写入读负载均衡高可用实验【转】
查看>>
SOA面向服务化编程架构(dubbo)
查看>>
sphinx全文索引开源
查看>>
junit测试套件
查看>>
向一个网站发请求的几种方式
查看>>
UVA - 10245 The Closest Pair Problem
查看>>
利用Bootstrap制作一个流行的网页
查看>>
大型网站架构 图片服务器分离
查看>>
【设计模式】迭代器模式(Iterator )
查看>>
Linux ssh安全设置
查看>>
LVM逻辑卷管理
查看>>
ubuntu:重装之后软件安装流程
查看>>
python读写不同编码txt文件
查看>>
Linux 基本命令(持续更新ing)
查看>>
java基础必备单词讲解 day six
查看>>
第7章 SpringMVC高级技术
查看>>
C语言结构体里的成员数组和指针
查看>>
【转】AlphaGo Zero 和强人工智能
查看>>