首页 > 代码库 > spring:ContextLoaderListener接口
spring:ContextLoaderListener接口
在启动Web容器时,自动装配Spring applicationContext.xml的配置信息。
因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。
public class UserConfigListener extends ContextLoaderListener { protected final Log logger = LogFactory.getLog(getClass()); public void contextInitialized(ServletContextEvent event) { try { UserConfig.getInstance().init(); } catch (Exception e) { logger.error("初始化用户信息错误:", e); } } @Override public void contextDestroyed(ServletContextEvent event) { // TODO Auto-generated method stub super.contextDestroyed(event); }
contextInitialized:启动的时候默认执行
spring:ContextLoaderListener接口
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。