用注解方式为struts2中的action单独配置一个拦截器


开发的过程中,有时候需要单独为某个action配置拦截器,如果是用注解的方式的话,可以在类的头部加入以下代码:
//为action单独注册一个拦截器
@Action(interceptorRefs={@InterceptorRef("tbusinessStack"), @InterceptorRef("crudStack")})


在struts.xml文件加入:
<interceptors>
...
<!-- 业务对象拦截器 -->
<interceptor name="tbusinessStack" class="com.aorta.core.interceptor.TbusinessInterceptor">
</interceptor>
...
</interceptors>


最后编写拦截器代码即可!

你可能感兴趣的:(xml,struts)