25 监听器Listener——ServletContext监听器

Posted Scorpicat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了25 监听器Listener——ServletContext监听器相关的知识,希望对你有一定的参考价值。

ServletContext监听器

有关信息请跳转这里

两个接口

ServletContextListener:监听servletContextListener对象的创建和销毁

ServletContextAttributeListener:监听servletContextListener对象里的数据的增删改

 

示例:

public class Listener implements ServletContextListener,ServletContextAttributeListener{
	
	/*------------------------application监听器-----------------------------------------*/
	@Override
	public void attributeAdded(ServletContextAttributeEvent event) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void attributeRemoved(ServletContextAttributeEvent event) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void attributeReplaced(ServletContextAttributeEvent event) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void contextDestroyed(ServletContextEvent sce) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void contextInitialized(ServletContextEvent sce) {
		// TODO Auto-generated method stub
		
	}
	
	
}	

  

 

以上是关于25 监听器Listener——ServletContext监听器的主要内容,如果未能解决你的问题,请参考以下文章

listener监听器的使用

第7章 监听器Listener

监听器 Listener

web.xml监听器 - listener

Listener 监听器

Java中的Listener 监听器