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

Action中的各项默认值

  • Action各项配置

    • 
          /WEB-INF/page/hello.jsp
             
  • Action默认配置

    • 
          /WEB-INF/page/hello.jsp
      
  • 默认值

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

你可能感兴趣的:(程序员)