博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java彻底 - WEB容器的侦听具体解释 ServletContextListener
阅读量:5086 次
发布时间:2019-06-13

本文共 1538 字,大约阅读时间需要 5 分钟。

WEB容器的侦听器ServletContextListener主要用于监测容器启动和 当破坏需要做一些操作,听众将能够使用此做。

ServletContextListener在Spring开始,然后再开始。

们实现一个简单的监听器,须要继承接口ServletContextListener:

* 一个測试的监听器样例 * @author zhuli * @date 2014-7-26 */public class TestContextLister implements ServletContextListener {    @Override    public void contextInitialized(ServletContextEvent sce) {        System.out.println("==============================容器装载");    }    @Override    public void contextDestroyed(ServletContextEvent sce) {        System.out.println("==============================容器销毁");    }}

ServletContextListener 实现两个接口,一个是容器启动的时候,一个是容器销毁的时候:

public interface ServletContextListener extends EventListener {	/**	 ** Notification that the web application initialization	 ** process is starting.	 ** All ServletContextListeners are notified of context	 ** initialization before any filter or servlet in the web	 ** application is initialized.	 */    public void contextInitialized ( ServletContextEvent sce );	/**	 ** Notification that the servlet context is about to be shut down.	 ** All servlets and filters have been destroy()ed before any	 ** ServletContextListeners are notified of context	 ** destruction.	 */    public void contextDestroyed ( ServletContextEvent sce );}
在web.xml中的配置:

com.xxx.controller.web.TestContextLister

容器启动后,会在容器启动的日志中看到:

==============================容器装载2014-07-26 08:54:01.302:INFO:/:Initializing Spring FrameworkServlet 'apiServlet'

版权声明:本文博客原创文章,博客,未经同意,不得转载。

转载于:https://www.cnblogs.com/bhlsheji/p/4620624.html

你可能感兴趣的文章
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
ambari 大数据安装利器
查看>>
java 上传图片压缩图片
查看>>
magento 自定义订单前缀或订单起始编号
查看>>
ACM_拼接数字
查看>>
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>