action跳转测试2.到strus.xml

struts2__action执行顺序

系统 1604 0

struts2的执行顺序:

1.表单提交给action(如loginActio n)

<a href="testAction.action?id=11">action跳转测试</a>

  <form action="flagSaveActionFlag.action" method="post">

2.到strus.xml

      
        <
      
      
        package 
      
      
        name
      
      
        ="com.StrutsDemo.Action"
      
      
         extends
      
      
        ="struts-default"
      
      
        >
      
      
        <!--
      
      
         用户管理的Action 
      
      
        -->
      
      
        <
      
      
        action 
      
      
        name
      
      
        ="*Action"
      
      
         class
      
      
        ="com.StrutsDemo.Action.UserInfoAction"
      
      
         method
      
      
        ="{1}"
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="success"
      
      
        >
      
      /ook.jsp
      
        </
      
      
        result
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="error"
      
      
        >
      
      /error.jsp
      
        </
      
      
        result
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="userview"
      
      
        >
      
      /userview.jsp
      
        </
      
      
        result
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="index"
      
      
         type
      
      
        ="redirect"
      
      
        >
      
      /flagTestActionFlag.action?id=${id}
      
        </
      
      
        result
      
      
        >
      
      
        </
      
      
        action
      
      
        >
      
      
        <
      
      
        action 
      
      
        name
      
      
        ="*ActionFlag"
      
      
         class
      
      
        ="com.StrutsDemo.Action.FlagAction"
      
      
         method
      
      
        ="{1}"
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="success"
      
      
        >
      
      /ook.jsp
      
        </
      
      
        result
      
      
        >
      
      
        <
      
      
        result 
      
      
        name
      
      
        ="error"
      
      
        >
      
      /error.jsp
      
        </
      
      
        result
      
      
        >
      
      
        </
      
      
        action
      
      
        >
      
      
        </
      
      
        package
      
      
        >
      
    

3.testAction.action在struts2.xml中找到“*Action”,再找到类com.StrutsDemo.Action.UserInfoAction,然后再到类中找test()方法;

      
        public
      
      
        class
      
      
         UserInfoAction {
    
      
      
        //
      
      
        其他方法
      
      
        public
      
      
         String test(){
        
      
      
        //
      
      
        方法内容
      
      
        return
      
       "index"
      
        ;
    }
      
    

4.再到struts2.xml中找到“*Action”下的<result name="index" type="redirect">/flagTestActionFlag.action?id=${id}</result>

继续按3跳转到struts2.xml中的“*ActionFlag”,再找到类com.StrutsDemo.Action.FlagAction下的方法flagTest(),再同3

 5.结构图

struts2__action执行顺序

struts2__action执行顺序


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论