Action中各项配置的默认值

Action中各项配置的默认值
配置一个Action:
1 < package  name ="hello"  namespace ="/action"  extends ="struts-default" >
2          < action  name ="helloworld" >
3                 < result > /WEB-INF/page/hello.jsp </ result >
4         </ action >
5 </ package >
Action的代码如下:
 1 public   class  HelloWorldAction  {
 2    private String msg;
 3    
 4    public String getMessage() {
 5        return msg;
 6    }

 7
 8    public String execute(){
 9        msg = "我的第一个struts2应用";
10        return "success";
11    }

12}
访问以下路径: http://localhost:8080/struts2/action/helloworld依然可以访问到jsp中的内容。这主要是因为Action中有很多默认配置:
1.如果没有为action配置class属性,那么其默认值为ActionSupport。
2.如果没有为action配置method属性,那么默认为execute
3.ActionSupport类中有一个execute()方法,它返回一个常量SUCCESS,而该常量的值为"success"。
4.如果没有为result设置name属性,默认为success。
知道以上内容,则不难理解为什么即使省略了很多属性的配置,依然能够访问到该Action了。

你可能感兴趣的:(Action中各项配置的默认值)