Struts2基于注解Annotation的零配置开发(一)

   以前使用Struts2的时候参数都是在struts.xml里面配置的,现在转入了一个新的项目中,发现这个项目struts.xml中只定义了几个常量,并没有大量的action、interceptor的配置信息,项目显得非常整洁,但是同时也看的云里雾里。今天花了一小会看了一个Struts2 Convention Plugin的官方文档,才大致了解了一二,这里简单叙述一下。

    具体的阐述请参考官网http://struts.apache.org/2.1.6/docs/convention-plugin.html。Convention Plugin是从2.1版本开始引进的。2.1以前的版本请参考http://struts.apache.org/2.0.14/docs/zero-configuration.html。不同的版本大家再到官网查看一下吧。呵呵

下面是常用的常量
namedefault valuedescription
struts.convention.result.path/WEB-INF/content/Directory where templates are located
struts.convention.result.flatLayouttrueIf set to false, the result can be put in its own directory: resultsRoot/namespace/actionName/result.extension
struts.convention.package.locatorsaction,actions,struts,struts2Packages whose name end with one of these strings will be scanned for actions
struts.convention.exclude.packagesorg.apache.struts.*,org.apache.struts2.*Packages excluded from the action scanning
struts.convention.package.locators.basePackage If set, only packages that start with its value will be scanned for actions


下面是步骤:
1,首先需要将架包(struts2-convention-plugin-xxx.jar)导入工程中(如果将action打包在了jar包中,那么属性struts.convention.action.disableJarScanning需要设置为true)。
2,跳转路径是根据请求路径的url处理的,即使没有请求对应的action,但是WEB-INF目录下有对应的页面,也可以跳转到页面上去。例如我们有页面WEB-INF/content/hello-world.jsp,如果我们请求http://localhost:8080/hello-world,即使没有HelloWorldAction,那么我们仍然能跳转到上面的欢迎页面,这是因为Convention plugin获取跳转结果只是根据Struts获取的URL,而不是action中配置的跳转路径。

下面是Annotation的分类:
1,Action annotation。
最简单的例子
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5.  
  6. public class HelloWorld extends ActionSupport { 
  7.   @Action("/different/url"
  8.   public String execute() { 
  9.     return SUCCESS; 
  10.   } 
那么这个HelloWorld的访问url就变为了/different/url。

一个方法可以被映射到多个url上面,如下所示,方位注解中的两个url都可以访问这个方法
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6.  
  7. public class HelloWorld extends ActionSupport { 
  8.   @Actions({ 
  9.     @Action("/different/url"), 
  10.     @Action("/another/url"
  11.   }) 
  12.   public String execute() { 
  13.     return SUCCESS; 
  14.   } 

如果一个action中有多个方法,那么可以分别为各个方法指定访问url
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6.  
  7. public class HelloWorld extends ActionSupport { 
  8.   @Action("/different/url"
  9.   public String execute() { 
  10.     return SUCCESS; 
  11.  
  12.   } 
  13.  
  14.   @Action("url"
  15.   public String doSomething() { 
  16.     return SUCCESS; 
  17.   } 
请注意上面这个类的第二个方法doSomething(),它的url是“url”,这是个相对路径是,也就是说访问这个方法时的正确路径是namespace+url。而execute()通过访问/different/url就可以访问。

使用@Action的interceptorRefs 属性可以指定action或者方法的interceptor,如下面的例子
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6.  
  7. public class HelloWorld extends ActionSupport { 
  8.   @Action(interceptorRefs={@InterceptorRef("validation"), @InterceptorRef("defaultStack")}) 
  9.   public String execute() { 
  10.     return SUCCESS; 
  11.   } 
  12.  
  13.   @Action("url"
  14.   public String doSomething() { 
  15.     return SUCCESS; 
  16.   } 
上面的action中execute()方法应用了validation拦截器和defaultStack拦截器栈。

还可以使用params属性指定要传给拦截器的参数。形式为{键,值,键,值…………},键值总是会成对出现,如下面的例子
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6.  
  7. public class HelloWorld extends ActionSupport { 
  8.   @Action(interceptorRefs=@InterceptorRef(value="validation",params={"programmatic", "false", "declarative", "true})) 
  9.   public String execute() { 
  10.     return SUCCESS; 
  11.   } 
  12.  
  13.   @Action("url"
  14.   public String doSomething() { 
  15.     return SUCCESS; 
  16.   } 
如果Action没有显式的指定拦截器的话,默认的拦截器会应用在这个Action上。

2,Interceptor Annotation。
拦截器可以在类和方法的层面上应用。在方法层面指定拦截器使用@Action注解,在类层面指定拦截器使用@InterceptorRefs注解。类层面引用的拦截器会应用在所有的方法上,如下面的例子
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6.  
  7. @InterceptorRefs({ 
  8.     @InterceptorRef("interceptor-1"), 
  9.     @InterceptorRef("defaultStack"
  10. }) 
  11. public class HelloWorld extends ActionSupport { 
  12.   @Action(value="action1", interceptorRefs=@InterceptorRef("validation")) 
  13.   public String execute() { 
  14.     return SUCCESS; 
  15.   } 
  16.  
  17.   @Action(value="action2"
  18.   public String doSomething() { 
  19.     return SUCCESS; 
  20.   } 
如上代码所示,execute()方法应用了interceptor-1,validation和defaultStack中的所有拦截器;而doSomething()方法则没有validation拦截器。

3,Result Annotation。
Convention plugin允许为一个Action设置多个跳转路径,使用@Result注解标识。@Result可以已经用在Action上,可以应用在方法上,应用在Action上作为全局路径,应用在Method上那么只对当前的Method起作用。如下面的例子
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6. import org.apache.struts2.convention.annotation.Result; 
  7. import org.apache.struts2.convention.annotation.Results; 
  8.  
  9. @Results({ 
  10.   @Result(name="failure", location="fail.jsp"
  11. }) 
  12. public class HelloWorld extends ActionSupport { 
  13.   @Action(value="/different/url",  
  14.     results={@Result(name="success", location="http://struts.apache.org", type="redirect")} 
  15.   ) 
  16.   public String execute() { 
  17.     return SUCCESS; 
  18.   } 
  19.  
  20.   @Action("/another/url"
  21.   public String doSomething() { 
  22.     return SUCCESS; 
  23.   } 
同@InterceptorRef注解,@Result注解同样可以使用params属性设置参数,实例如下
Java代码  收藏代码
  1. package com.example.actions; 
  2.  
  3. import com.opensymphony.xwork2.ActionSupport;  
  4. import org.apache.struts2.convention.annotation.Action; 
  5. import org.apache.struts2.convention.annotation.Actions; 
  6. import org.apache.struts2.convention.annotation.Result; 
  7. import org.apache.struts2.convention.annotation.Results; 
  8.  
  9. public class HelloWorld extends ActionSupport { 
  10.   @Action(value="/different/url",  
  11.     results={@Result(name="success", type="httpheader", params={"status", "500", "errorMessage", "Internal Error"})} 
  12.   ) 
  13.   public String execute() { 
  14.     return SUCCESS; 
  15.   } 
  16.  
  17.   @Action("/another/url"
  18.   public String doSomething() { 
  19.     return SUCCESS; 
  20.   } 

由于篇幅太长,其他的注解下一篇文章再介绍。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值