标签:des style blog http color io os ar 使用
一.WebContextLoaderListener
它能捕捉到server的启动和停止,在启动和停止触发里面的方法做对应的操作!
它必须在web.xml 中配置才干使用,是配置监听类的
二.以下是搜集的一些listener方面的知识
简例一
监听用户上线与退出,显示在线用户
1、登陆页面 Login.jsp
<%@page pageEncoding="gb2312" contentType="text/html; charset=gb2312" %>
<%
session=request.getSession(false);
if(session!=null)session.invalidate();
%>
<html>
<head><title></title></head>
<body>
<form action="isOnline.jsp" method="post">
username:<input type="text" name="uName"/>
<input type="submit" value="上线">
</form>
</body>
</html>
2、控制页面(仅仅是为了说明监听器问题,所以简单了点...) isOnline.jsp
<%@page pageEncoding="gb2312" contentType="text/html; charset=gb2312" %>
<html>
<head><title></title></head>
<body>
<%
session=request.getSession();
session.setAttribute("userName",request.getParameter("uName"));
response.sendRedirect("showOnline.jsp");
%>
</body>
</html>
3、显示页面 showOnline.jsp
<%@page pageEncoding="gb2312" contentType="text/html; charset=gb2312" import="java.util.ArrayList" %>
<html>
<head><title></title></head>
<body>
<%
ArrayList showList=(ArrayList)(getServletContext().getAttribute("list"));
out.print("在线人数 "+showList.size()+"<br>");
for(int i=0;i<showList.size();i++){
out.print(showList.get(i)+"在线"+"<br>");
}
%>
<br>
<a href="Login.jsp">退出</a>
</body>
</html>
4、配置页面 web.xml
<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE web-app
<web-app>
<listener>
</listener>
</web-app>
5、监听器 onlineListener.java
package org.xiosu.listener;
import java.util.ArrayList;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpSessionAttributeList
import javax.servlet.http.HttpSessionBindingEvent;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
public class onlineListener implements HttpSessionListener,
HttpSessionAttributeList
// 參数
ServletContext sc;
ArrayList list = new ArrayList();
// 新建一个session时触发此操作
public void sessionCreated(HttpSessionEvent se) {
sc=se.getSession().getServletContext();
System.out.println("新建一个session");
}
// 销毁一个session时触发此操作
public void sessionDestroyed(HttpSessionEvent se) {
System.out.println("销毁一个session");
if (!list.isEmpty()) {
}
}
// 在session中加入?对象时触发此操作,在list中加入?一个对象
public void attributeAdded(HttpSessionBindingEvent sbe) {
list.add((String) sbe.getValue());
sc.setAttribute("list", list);
}
// 改动、删除session中加入?对象时触发此操作
public void attributeRemoved(HttpSessionBindingEvent arg0) {
}
public void attributeReplaced(HttpSessionBindingEvent arg0) {
}
}
说明:本例仅仅为简介监听器,并未进行安全方面设置。
监听器也叫Listener,是Servlet的监听器,它能够监听client的请求、服务端的操作等。通过监听器,能够自己主动激发一些操作,比方监听在线的用户的数量。当添加?一个HttpSession时,就激发sessionCreated(HttpSessionEvent
就能够给在线人数加1。经常使用的监听接口有下面几个:
ServletContextAttributeL
ServletContextListener监听ServletContext。当创建ServletContext时,激发 contextInitialized(ServletContextEvent
HttpSessionListener监听HttpSession的操作。当创建一个Session时,激发session
HttpSessionAttributeList
example:随server启动
<web-app>
package com.tb.listener;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.http.HttpServlet;
import com.tb.timertask.DoCountTask;
public class CountStartListener extends HttpServlet implements ServletContextListener
{
private static final long serialVersionUID = 1824920962239905170L;
public CountStartListener()
{
}
public void contextDestroyed(ServletContextEvent arg0)
{
}
{
}
}
概述:
Servlet监听器用于监听一些重要事件的发生,监听器对象能够在事情发生前、发生后能够做一些必要的处理。
接口:
眼下Servlet2.4和JSP2.0总共同拥有8个监听器接口和6个Event类,当中HttpSessionAttributeList
HttpSessionBindingListen
Listener接口 |
Event类 |
ServletContextListener |
ServletContextEvent |
ServletContextAttributeL |
ServletContextAttributeE |
HttpSessionListener |
HttpSessionEvent |
HttpSessionActivationLis |
|
HttpSessionAttributeList |
HttpSessionBindingEvent |
HttpSessionBindingListen |
|
ServletRequestListener |
ServletRequestEvent |
ServletRequestAttributeL |
ServletRequestAttributeE |
分别介绍:
一 ServletContext相关监听接口
补充知识:
通过ServletContext 的实例能够存取应用程序的全局对象以及初始化阶段的变量。
在JSP文件里,application 是 ServletContext 的实例,由JSP容器默认创建。Servlet 中调用 getServletContext()方法得到 ServletContext 的实例。
注意:
全局对象即Application范围对象,初始化阶段的变量指在web.xml中,经由<context-param>元素所设定的变量,它的范围也是Application范围,比如:
<context-param>
<param-name>Name</param-name>
<param-value>browser</param-value>
</context-param>
当容器启动时,会建立一个Application范围的对象,若要在JSP网页中取得此变量时:
String name = (String)application.getInitParameter("Name");
或者使用EL时:
${initPara.name}
若是在Servlet中,取得Name的值方法:
String name = (String)ServletContext.getInitParameter("Name");
1.ServletContextListener:
用于监听WEB 应用启动和销毁的事件,监听器类须要实现javax.servlet.ServletContextListener 接口。
ServletContextListener 是 ServletContext 的监听者,假设 ServletContext 发生变化,如server启动时 ServletContext 被创建,server关闭时 ServletContext 将要被销毁。
ServletContextListener接口的方法:
void contextInitialized(ServletContextEvent sce)
通知正在接受的对象,应用程序已经被载入及初始化。
void contextDestroyed(ServletContextEvent sce)
通知正在接受的对象,应用程序已经被载出。
ServletContextEvent中的方法:
ServletContext getServletContext()
取得ServletContext对象
2.ServletContextAttributeL
ServletContextAttributeL
void attributeAdded(ServletContextAttributeE
若有对象添?Application的范围,通知正在收听的对象
void attributeRemoved(ServletContextAttributeE
若有对象从Application的范围移除,通知正在收听的对象
void attributeReplaced(ServletContextAttributeE
若在Application的范围中,有对象代替还有一个对象时,通知正在收听的对象
ServletContextAttributeE
java.lang.String getName()
回传属性的名称
java.lang.Object getValue()
回传属性的值
二、HttpSession相关监听接口
1.HttpSessionBindingListen
注意:HttpSessionBindingListen
当我们的类实现了HttpSessionBindingListen
void valueBound(HttpSessionBindingEvent event)
void valueUnbound(HttpSessionBindingEvent event)
思考:怎样实现记录站点的客户登录日志, 统计在线人数?
2.HttpSessionAttributeList
HttpSessionAttributeList
当在Session添加?一个属性时,激发attributeAdded(HttpSessionBindingEvent se) 方法;当在Session删除一个属性时,激发attributeRemoved(HttpSessionBindingEvent se)方法;当在Session属性被又一次设置时,激发attributeReplaced(HttpSessionBindingEvent se) 方法。这和ServletContextAttributeL
3.HttpSessionListener接口
HttpSessionListener监听 HttpSession的操作。当创建一个Session时,激发session Created(HttpSessionEvent se)方法;当销毁一个Session时,激发sessionDestroyed (HttpSessionEvent se)方法。
4.HttpSessionActivationLis
主要用于同一个Session转移至不同的JVM的情形。
四、ServletRequest监听接口
1.ServletRequestListener接口
和ServletContextListener接口类似的,这里由ServletContext改为ServletRequest
2.ServletRequestAttributeL
和ServletContextListener接口类似的,这里由ServletContext改为ServletRequest
有的listener可用于统计站点在线人数及訪问量。 例如以下:
server启动时(实现ServletContextListener监听器contextInitialized方法),读取数据库,并将其用一个计数变量保存在application范围内
session创建时(实现HttpSessionListener监听器sessionCreated方法),读取计数变量加1并又一次保存
server关闭时(实现ServletContextListener监听器contextDestroyed方法),更新数据库
转自: http://www.blogjava.net/wx886104/archive/2010/06/01/322419.html
标签:des style blog http color io os ar 使用
原文地址:http://www.cnblogs.com/yxwkf/p/4032747.html