Java for Web学习笔记(四三):Filter(5)用于认证

一个简单的认证Filter

简单的Filter,登录界面为/login,如果登录成功,session中带有username。

public class AuthenticationFilter implements Filter {

	public void init(FilterConfig fConfig) throws ServletException { }

	public void destroy() {	}

	public void doFilter(ServletRequest request,ServletResponse response,FilterChain chain) throws IOException,ServletException{
		HttpSession session = ((HttpServletRequest)request).getSession(false);
		if(session == null || session.getAttribute("username") == null){
			System.out.println("redirect to /login ... ");
			((HttpServletResponse)response).sendRedirect("/login");
		}else{
			System.out.println("username = "  + session.getAttribute("username"));
			chain.doFilter(request, response);
		}		
	}
}

定义Filter

采用代码设置方式,对/sessions,/tickets的url要求经过认证的filter。

public class Configurator implements ServletContextListener {

    public void contextDestroyed(ServletContextEvent sce)  { 
    }

    public void contextInitialized(ServletContextEvent sce)  { 
         ServletContext context = sce.getServletContext();
         FilterRegistration.Dynamic registration = context.addFilter("AuthenticationFilter", AuthenticationFilter.class);
         //registration.setAsyncSupported(true);
         registration.addMappingForUrlPatterns(null, false, "/sessions","/tickets");
    }	
}

相关链接: 我的Professional Java for Web Applications相关文章


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值