码迷,mamicode.com
首页 > 其他好文 > 详细

struts1拦截器

时间:2015-10-12 12:38:51      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

Struts2已经发布一段时间了,这个版本较struts1.x版本有了很大变化,其中一个就是增加了拦截器功能。这是个非常有用的功能,可是struts1.x却没有。     其实,struts1.x可以配合插件,实现拦截器的功能。     SAIF(Struts Action Invocation Framework)是一个开源组件,它让Struts框架具备Action拦截器与IOC的功能,这样你的1.x框架也就有了拦截器的功能。       1.将saif.jar包放入你的lib中。       2.创建Interceptor类。比如我在这里创建一个类:

package interceptor; 技术分享 技术分享import java.io.IOException; 技术分享 技术分享import javax.servlet.ServletException; 技术分享import javax.servlet.http.HttpServletRequest; 技术分享import javax.servlet.http.HttpServletResponse; 技术分享 技术分享import org.apache.struts.action.Action; 技术分享import org.apache.struts.action.ActionForm; 技术分享import org.apache.struts.action.ActionForward; 技术分享import org.apache.struts.action.ActionMapping; 技术分享 技术分享import net.sf.struts.saif.ActionHaveForwardInterceptor; 技术分享 技术分享publicclass DisplayInterceptorimplements ActionHaveForwardInterceptor{ 技术分享 技术分享    public ActionForward afterAction(Action arg0, ActionMapping arg1, 技术分享             ActionForm arg2, HttpServletRequest arg3, HttpServletResponse arg4) 技术分享            throws IOException, ServletException{ 技术分享        // TODO Auto-generated method stub 技术分享        returnnull; 技术分享     } 技术分享 技术分享    public ActionForward beforeAction(Action action, ActionMapping mapping, 技术分享             ActionForm form, HttpServletRequest request, HttpServletResponse response) 技术分享            throws IOException, ServletException{ 技术分享        // TODO Auto-generated method stub 技术分享         System.out.println("Inteceptor..."); 技术分享        if (!"fred".equals(request.getParameter("user_name"))){ 技术分享            return mapping.findForward("noPermission"); 技术分享         } 技术分享        returnnull; 技术分享     } 技术分享 技术分享} 技术分享

3.写interceptor配置文件:interceptor-config.xml。这个配置文件中指定了interceptor类和要被拦截的action

技术分享<?xml version="1.0" encoding="UTF-8"?> 技术分享<interceptor-config> 技术分享  <interceptorname="displayInterceptor" type="interceptor.DisplayInterceptor"/> 技术分享     技术分享  <actiontype="/display"> 技术分享        <interceptorname="displayInterceptor"/> 技术分享  </action> 技术分享     技术分享</interceptor-config>

4.在struts-config.xml中指定加载interceptor-config.xml

技术分享<plug-in className="net.sf.struts.saif.SAIFSpringPlugin"> 技术分享    <set-propertyproperty="interceptor-config" value="/WEB-INF/interceptor-config.xml"/> 技术分享  </plug-in>

ok,配置完后,启动服务器,然后输入.../display.do?user_name=fred,回车,这时候,这个请求就会被拦截来,

进入beforeAction中,进行验证,若验证成功,return null,就会转到action的forward指向的页面,若不成功,

就会转向另一个页面。

struts1拦截器

标签:

原文地址:http://www.cnblogs.com/hkxd-1/p/4871183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!