ImageVerifierCode 换一换
格式:DOCX , 页数:10 ,大小:16.10KB ,
资源ID:8340163      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/8340163.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(spring项目中监听器作用.docx)为本站会员(b****5)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

spring项目中监听器作用.docx

1、spring项目中监听器作用spring项目中监听器作用 1 spring框架的启动入口 ContextLoaderListener2作用:在启动Web容器时,自动装配SpringapplicationContext.xml的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成 pring在web下的入口在配置文件web.xml的监听器中<listener&

2、gt; <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class></listener><context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:conf/spring/applicationContext.xml</param-value></context-pa

3、ram>上述是在web.xml中的配置信息。 /实现了接口ServletContextListener,也就是说他必须实现contextDestroyed, contextInitialized这两个方法publicclass ContextLoaderListener implements ServletContextListener privateContextLoader contextLoader; /* *Initialize the root web application context. */Spring框架由此启动, contextInitialized也就是监听器类的

4、main入口函数 publicvoid contextInitialized(ServletContextEvent event) this.contextLoader = createContextLoader(); this.contextLoader.initWebApplicationContext(event.getServletContext(); /* * Createthe ContextLoader to use. Can be overridden in subclasses. * returnthe new ContextLoader */ protectedContex

5、tLoader createContextLoader() return new ContextLoader(); /* * Returnthe ContextLoader used by this listener. * returnthe current ContextLoader */ publicContextLoader getContextLoader() return this.contextLoader; /* * Closethe root web application context. */ publicvoid contextDestroyed(ServletConte

6、xtEvent event) if (this.contextLoader != null) this.contextLoader.closeWebApplicationContext(event.getServletContext(); 总的来说这个入口非常简单,所有实现都隐藏在ContextLoader类里,我们在下一篇的内容中讨论ContextLoader,如果你不知道为什么这里是程序的入口,那么复习一下ServletContextListener 接口和监听器的相关知识吧 ServletContext被Servlet程序用来与 Web容器通信。例如写日志,转发请求。每一个 Web应用程

7、序含有一个Context,被Web应用内的各个程序共享。因为Context可以用来保存资源并且共享,所以我所知道的 ServletContext的最大应用是Web缓存-把不经常更改的内容读入内存,所以服务器响应请求的时候就不需要进行慢速的磁盘I/O了。 ServletContextListener是ServletContext的监听者,如果 ServletContext发生变化,如服务器启动时 ServletContext被创建,服务器关闭时 ServletContext将要被销毁。 在JSP文件中,application是 ServletContext的实例,由JSP容器默认创建。Servl

8、et中调用 getServletContext()方法得到 ServletContext的实例。我们使用缓存的思路大概是: 1.服务器启动时,ServletContextListener的contextInitialized()方法被调用,所以在里面创建好缓存。可以从文件中或者从数据库中读取取缓存内容生成类,用 ervletContext.setAttribute()方法将缓存类保存在ServletContext的实例中。 2.程序使用 ServletContext.getAttribute()读取缓存。如果是 JSP,使用a pplication.getAttribute()。如果是 Ser

9、vlet,使用 getServletContext().getAttribute()。如果缓存发生变化(如访问计数),你可以同时更改缓存和文件/数据库。或者你等 变化积累到一定程序再保存,也可以在下一步保存。 3.服务器将要关闭时,ServletContextListener的 contextDestroyed()方法被调用,所以在里面保存缓存的更改。将更改后的缓存保存回文件或者数据库,更新原来的内容。 Java代码 import User; /my own classimport DatabaseManager; / my own class import javax.servlet.Ser

10、vletContext; import javax.servlet.ServletContextListener; public class MyContextListener implements ServletContextListener private ServletContext context = null; public void contextInitialized(ServletContextEvent event) context = event.getServletContext(); User user = DatabaseManager.getUserById(1);

11、 context.setAttribute(user1, user); public void contextDestroyed(ServletContextEvent event) User user = (User)context.getAttribute(user1); DatabaseManager.updateUserData(user); this.context = null; import User; /my ownclassimport DatabaseManager; /my own classimportjavax.servlet.ServletContext;impor

12、tjavax.servlet.ServletContextListener;public classMyContextListener implementsServletContextListener private ServletContext context = null; public voidcontextInitialized(ServletContextEvent event) context =event.getServletContext(); User user =DatabaseManager.getUserById(1); context.setAttribute(use

13、r1, user); public voidcontextDestroyed(ServletContextEvent event) User user =(User)context.getAttribute(user1); DatabaseManager.updateUserData(user); this.context = null; 布署 ServletContextListener 你实现(implements)了 ServletContextListener编译后,把它放在正确的WEB-INF/classes目录下,更改WEB-INF目录下的 web.xml文件,在web-app节点里添加<listener> <listener-class>MyServletContextListener</listener-class></listener>

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1