03. struts2中Action配置的各項默認值

Action中的各項默認值

  • Action各項配置jsp

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

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

    1. 若是沒有爲action指定class,默認是ActionSupport。
    2. 若是沒有爲action指定method,默認執行action中的execute() 方法。
    3. 若是沒有指定result的name屬性,默認值爲success。

相關文章
相關標籤/搜索