首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

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

2012-11-04 
用注解方式为struts2中的action单独配置一个拦截器开发的过程中,有时候需要单独为某个action配置拦截器,如

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

开发的过程中,有时候需要单独为某个action配置拦截器,如果是用注解的方式的话,可以在类的头部加入以下代码:

//为action单独注册一个拦截器@Action(interceptorRefs={@InterceptorRef("tbusinessStack"), @InterceptorRef("crudStack")})


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


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

热点排行