本文主要是介绍JavaWeb 监听器和过滤器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
超详细的Java知识点路线图
监听器
可以监听Web项目中各种对象的状态变化,如:网站的启动和停止、Session的创建和销毁、Session中属性的添加和删除,然后根据对象的状态变化自动调用监听器中的方法。
应用场景:
- 网站启动后做预先工作,如:加载缓存
- 加载配置文件,如:Spring通过监听器对配置进行加载
常用的监听器:
-
ServletContextListener 监听网站的启动和停止
方法:
contextInitialized 项目初始化完毕
contextDestroyed 项目销毁完毕 -
HttpSessionListener 监听Session的创建和销毁
方法:
sessionCreated Session的创建
sessionDestoryed Session的销毁
注册监听器
- 在web.xml注册
<!-- 注册监听器 --><listener><listener-class>com.qianfeng.java34.WebListener</listener-class></listener>
- 注解注册
类前面添加 @WebListener
案例:监听网站人数的变化
/*** 监听访问网站人数的监听器* @author xray**/
@WebListener
public class UserCountListener implements HttpSessionListener{private MyLogger logger = new MyLogger(UserCountListener.class);@Overridepublic void sessionCreated(HttpSessionEvent event) {//从ServletContext中取出用户人数ServletContext application = event.getSession().getServletContext();Integer count = (Integer) application.getAttribute("count");//如果之前没有添加该数据,初始化为1if(count == null){application.setAttribute("count", 1);}else{//如果数量不为空,就增长1application.setAttribute("count", ++count);}logger.info("用户访问网站,当前人数:"+count);}@Overridepublic void sessionDestroyed(HttpSessionEvent event) {//从ServletContext中取出用户人数ServletContext application = event.getSession().getServletContext();Integer count = (Integer) application.getAttribute("count");//用户退出后,人数减一if(count != null && count >= 1){application.setAttribute("count", --count);}logger.info("用户退出网站,当前人数:"+count);}}
补充:如何关闭Session
1、关闭服务器
2、等待一段时间(30分钟)
3、调用session对象invalidate方法
/*** 关闭Session的Serlvet* @author xray**/
@WebServlet("/close.do")
public class CloseSessionServlet extends HttpServlet{@Overrideprotected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {doPost(req, resp);}@Overrideprotected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {//关闭Sessionreq.getSession().invalidate();}
}
页面
<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>统计网站用户人数</title>
</head>
<body><h1>当前网站人数:${count}</h1><a href="close.do">安全退出</a>
</body>
</html>
过滤器
可以对Web项目的各种资源进行过滤(页面、Servlet、图片、文件),也可以在网站资源进行请求和响应时,完成一些通用的功能。
如:每个Servlet都需要设置请求和响应的编码,可以把设置编码放到过滤器中,每个Servlet经过过滤器就完成编码设置工作。
过滤器的使用:
项目中可以创建多个过滤器,项目的资源可能会经过多个过滤器,多个过滤器就形成过滤器链。
实现步骤:
-
实现Filter接口
方法:- init 初始化
- destroy 销毁
- doFilter 过滤资源
doFilter的参数:- ServletRequest 请求对象
- ServletResponse 响应对象
- FilterChain 过滤器链
调用doFilter方法,对请求放行,不调用就拦截了
-
注册
- web.xml注册
<filter><filter-name>Filter1</filter-name><filter-class>com.qianfeng.java34.Filter1</filter-class></filter><filter-mapping><filter-name>Filter1</filter-name><!-- 配置哪些资源需要经过该过滤器 --><url-pattern>/test.jsp</url-pattern></filter-mapping>
如果要过滤所有资源:url-pattern设置为/*
过滤部分资源:/资源名,/资源名。。。
- 注解注册
@WebFilter({"/*"})
@WebFilter({"/login.do","/register.do"})
案例:实现用户的登陆验证
1、添加过滤器过滤Web资源(除了login.jsp\login.do)
2、在过滤器中,判断Session中是否存在User对象
如果存在,就执行后面的操作
如果不存在,就跳转到login.jsp页面
3、在登陆成功后,将User对象存在Session中
/*** 用户登录验证的过滤器*/
public class UserLoginFilter implements Filter{public static final String[] NO_FILTER_URLS = {"/login.jsp","/login.do","/code.do"};@Overridepublic void destroy() {}@Overridepublic void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)throws IOException, ServletException {MyLogger logger = new MyLogger(UserLoginFilter.class);//获得Session对象HttpServletRequest request = (HttpServletRequest) req;HttpServletResponse response = (HttpServletResponse) resp;//判断如果是不拦截的URL,就放行String url = request.getRequestURL().toString();for(String surl : NO_FILTER_URLS){if(url.endsWith(surl)){chain.doFilter(req, resp);logger.info("不过滤URL:"+url);return;}}logger.info("过滤URL:"+url);//获得User对象HttpSession session = request.getSession();User user = (User) session.getAttribute("user");//判断User对象为null,重定向到login.jsp页面if(user == null){logger.info("当前URL没有登陆:"+url);response.sendRedirect("login.jsp");}else{logger.info("当前URL已经登陆:"+url);//如果不为null,跳转到后面页面chain.doFilter(req, resp);}}@Overridepublic void init(FilterConfig arg0) throws ServletException {}
}
这篇关于JavaWeb 监听器和过滤器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!