码迷,mamicode.com
首页 > 其他好文 > 详细

25 监听器Listener——ServletContext监听器

时间:2020-03-02 17:39:12      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:www   err   attribute   placed   ati   move   html   ted   pre   

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监听器

标签:www   err   attribute   placed   ati   move   html   ted   pre   

原文地址:https://www.cnblogs.com/Scorpicat/p/12396807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!