DispatchAction类一个Action中包含多个业务处理<测试通过>

本文展示了一个使用 Struts 框架中 DispatchAction 的示例。该示例包括了前台页面 DispatchActionTest.jsp 和后台的 BankAction 类。通过不同的链接实现了存钱、取钱和查询余额的功能。

前台页面:DispatchActionTest.jsp

<%@ page language="java" pageEncoding="UTF-8"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<html:html>
<body>
<html:link href="userBank.do?method=saveMoney">&lt;存钱</html:link>
<html:link href="userBank.do?method=getMoney">取钱</html:link>
<html:link href="userBank.do?method=findBalance">查询余额</html:link>
</body>
</html:html>

后台DispatchAction:

package com.login.struts.Action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.DispatchAction;

public class BankAction extends DispatchAction
{
public ActionForward saveMoney(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception
{
return mapping.findForward("save");

}

public ActionForward getMoney(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
{
return mapping.findForward("get");
}

public ActionForward findBalance(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
{
return mapping.findForward("find");
}

}

转载于:https://www.cnblogs.com/0704040304java/archive/2012/03/16/2399929.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值