用注解方式为struts2中的action单独配置一个拦截器
开发的过程中,有时候需要单独为某个action配置拦截器,如果是用注解的方式的话,可以在类的头部加入以下代码:
//为action单独注册一个拦截器@Action(interceptorRefs={@InterceptorRef("tbusinessStack"), @InterceptorRef("crudStack")})
<interceptors>...<!-- 业务对象拦截器 --><interceptor name="tbusinessStack" class="com.aorta.core.interceptor.TbusinessInterceptor"></interceptor>...</interceptors>