/WE...">
美文网首页
03. struts2中Action配置的各项默认值

03. struts2中Action配置的各项默认值

作者: c9096743e3b0 | 来源:发表于2020-11-24 23:52 被阅读0次

Action中的各项默认值

  • Action各项配置

    •  <action name="helloworld" class="com.liuyong666.action.HelloWorldAction" method="execute" >
           <result name="success">/WEB-INF/page/hello.jsp</result>
       </action>     
      
  • Action默认配置

    •  <action name="helloworld">
           <result>/WEB-INF/page/hello.jsp</result>
       </action>
      
  • 默认值

    1. 如果没有为action指定class,默认是ActionSupport。
    2. 如果没有为action指定method,默认执行action中的execute() 方法。
    3. 如果没有指定result的name属性,默认值为success。

相关文章

网友评论

      本文标题:03. struts2中Action配置的各项默认值

      本文链接:https://www.haomeiwen.com/subject/qahgiktx.html