码迷,mamicode.com
首页 > 其他好文 > 详细

struts2配置文件中的method={1}详解

时间:2016-11-03 18:23:02      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:执行方法   href   actions   text   访问   register   文件   灵活   方法   

struts.xml中的配置:
<!-- 配置用户模块的action -->
    <action name="user_*" class="userAction" method="{1}">
        <result name="registPage">/WEB-INF/jsp/regist.jsp</result>
    </action>

/*
此时method={1}中的{1}代表user_*中的*,即加入你访问路径是/user_registPage.action,则此刻访问的是该Action中的registPage方法。同理,如果通配符* == delete,则就访问的是delete方法。
当name中含有多个通配符的时候,method={2} ,就代表第二个通配符,同理以此类推。
这种方式更灵活的简化了struts.xml的配置文件。
*/


regist.jsp页面中的代码段:
<li id="headerRegister" class="headerRegister" style="display: list-item;">
                    <a href="${ pageContext.request.contextPath }/user_registPage.action">注册</a>|
                </li>

/*
user_registPage.action对应 name="user_*",通配符*就是registPage,
method="{1}"里面的{1}就是代表registPage()方法,
这个registPage()方法存在于 UserAction中

*/

Action类:

public class UserAction extends ActionSupport{
    /**
     * 跳转到注册页面的执行方法
     */
public String registPage(){            
        return "registPage";
    }
}

 

struts2配置文件中的method={1}详解

标签:执行方法   href   actions   text   访问   register   文件   灵活   方法   

原文地址:http://www.cnblogs.com/fifiyong/p/6027565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!