servlet事件监听器原理

这里拿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);

 }

这里是迭代一个保存了上下文属性监听器的叫ctxAttrListenersList(ctxAttrListeners是在系统启动时从web.xml配置文件读取上下文属性监听器配置实例化后存入的,然后根据参数值调用监听器的相应的方法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值