首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

struts配置的运用和理解(3)

struts配置的运用和理解(3)

示例三
动态调用方法DMI 如果是动态调用,那么就不必要象上面那样填写那么多的配置,可以直接在页面上指定调用的方法。
类文件

    public class MethodAction extends ActionSupport
    {
    public String add()
    {
    return SUCCESS;
    }
    public String delete()
    {
    return SUCCESS;
    }
    public String modify()
    {
    return SUCCESS;
    }
    public String query()
    {
    return SUCCESS;
    }
    }

struts.xml配置为:

    <action name="methodaction" class="com.struts2.chen.MethodAction">
    <result name="success">/method/Res.jsp</result>
    </action>

页面:

    <a href="<%=path %>/methodaction!add.action">增加DMI</a><br />
    <a href="<%=path %>/methodaction!delete.action">删除DMI</a><br />
    <a href="<%=path %>/methodaction!modify.action">修改DMI</a><br />
    <a href="<%=path %>/methodaction!query.action">查询DMI</a><br />
返回列表