servlet事件监听器原理
这里拿ServletContextAttributeListener来做剖析。WebLogic容器的WebAppServletContext(在weblogic.jar)实现ServletContext接口。在WebAppServletContext类有如下代码:public void removeAttribute(String s){ Object obj =
这里拿ServletContextAttributeListener来做剖析。
当我们往ServletContext里添加一个属性或删除一个属性时,有时需要做相关的操作,这时只需创建一个实现ServletContextAttributeListener的监听器就可以了,在添加一个属性或删除一个属性时就会调用这个监听器的方法,下面是监听器的工作原理。
WebLogic容器的WebAppServletContext(在weblogic.jar)实现了ServletContext接口。
在WebAppServletContext类有如下代码:
public void removeAttribute(String s)
{
Object obj = attributes.remove(s);
eventsManager.notifyContextAttributeChange(s, null, obj);
}
上面eventsManager是EventsManager类型的对象。
notifyContextAttributeChange方法的代码:
void notifyContextAttributeChange(String s, Object obj, Object obj1)
{
obj1 = unwrapAttribute(obj1);
Iterator iterator = ctxAttrListeners.iterator();
do
{
if(!iterator.hasNext())
break;
ServletContextAttributeListener servletcontextattributelistener= (ServletContextAttributeListener)iterator.next();
if(obj1 == null)
{
if(obj != null)
servletcontextattributelistener.attributeAdded(new ServletContextAttributeEvent(context, s, obj));
} else
if(obj == null)
{
servletcontextattributelistener.attributeRemoved(new ServletContextAttributeEvent(context, s, obj1));
} else
{
if(obj1.equals(obj))
return;
servletcontextattributelistener.attributeReplaced(new ServletContextAttributeEvent(context, s, obj1));
}
} while(true);
}
这里是迭代一个保存了上下文属性监听器的叫ctxAttrListeners的List(ctxAttrListeners是在系统启动时从web.xml配置文件读取上下文属性监听器配置实例化后存入的),然后根据参数值调用监听器的相应的方法。
更多推荐
所有评论(0)