网站大量收购闲置独家精品文档,联系QQ:2885784924

Listener开发(选讲)浅析.ppt

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第三部分(续)Listener开发 内容: (1)Listener的定义和作用, (2)配置Listener (3)istener的分类以及常用的Listener,如ServletContext Listener和HttpSession Listener。 目标: 熟练掌握如何定义并配置Listener 熟练掌握ServletContextListener接口的实现和作用 熟练掌握ServletContextAttributeListener接口的实现和作用 熟练掌握HttpSessionListener接口的实现和作用 熟练掌握HttpSessionAttributeListener接口的实现和作用 12.1 Listener简介 12.2 ServletContext有关的Listener接口 12.2.1 ServletContextListener接口 12.2.2 ServletContextAttributeListener接口 12.3 HttpSession有关的Listener接口 12.3.1 HttpSessionListener接口 12.3.2 HttpSessionAttributeListener接口 12.4 综合练习 12.5 小结 Listener的中文译名为监听器,从字面上可以看出Listener主要用来监听之用。通过Listener可以监听容器中某一执行动作,并根据其要求做出相应的响应。 到目前Servlet 2.4开始,一共包含八个Listener接口,可以将其分为三类,分别如下。 第一类:与ServletContext有关的Listener接口(2个) ServletContextListener、ServletContextAttributeListener。 第二类:与HttpSession有关的Listener接口(4个) HttpSessionListener、HttpSessionAttributeListener、HttpSessionBindingListener和HttpSessionActivationListener。 第三类:与ServletRequest有关的Listener接口(2个) ServletRequestListener和ServletRequestAttributeListener。 ServletContext 有关的Listener包含两个Listener接口,分别是 ServletContextListener和ServletContextAttributeListener。 其中ServletContextListener接口用来实现ServletContext的启动和销毁监听;ServletContextAttributeListener接口用来实现application范围属性变化的监听。 ServletContextListener接口用来实现ServletContext的启动和销毁监听。 该接口中包含两个方法, contextInitialized()方法,用来监听ServletContext的启动和初始化; contextDestroyed()方法,用来监听ServletContext的销毁。 在这两个方法中还包含一个参数sce,其类型为ServletContextEvent。通过ServletContextEvent对象的getServletContext()方法可以获得ServletContext对象。 示例代码 MyServletContextListener.java ServletContextAttributeListener接口用来实application范围属性变化的监听。 该接口中包含三个方法, attributeAdded()方法,监听application范围属性的添加; attributeReplaced()方法,监听application范围属性的替换; attributeRemoved()方法,监听application范围属性的移除。 在这两个方法中还包含一个参数scab,其类型为 ServletContextAttributeEvent。通过ServletContextAttributeEvent对象的getName()方法可以获得属性的名称;通过ServletContextAttributeEvent对象的getValue()方法可以获得属性的值。 示例代码 MyServle

文档评论(0)

1112111 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档