当前位置: 首页>>代码示例>>Java>>正文


Java Log4jConfigurer.shutdownLogging方法代码示例

本文整理汇总了Java中org.springframework.util.Log4jConfigurer.shutdownLogging方法的典型用法代码示例。如果您正苦于以下问题:Java Log4jConfigurer.shutdownLogging方法的具体用法?Java Log4jConfigurer.shutdownLogging怎么用?Java Log4jConfigurer.shutdownLogging使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.util.Log4jConfigurer的用法示例。


在下文中一共展示了Log4jConfigurer.shutdownLogging方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: shutdownLogging

import org.springframework.util.Log4jConfigurer; //导入方法依赖的package包/类
/**
 * Shut down log4j, properly releasing all file locks
 * and resetting the web app root system property.
 * @param servletContext the current ServletContext
 * @see WebUtils#removeWebAppRootSystemProperty
 */
public static void shutdownLogging(ServletContext servletContext) {
	servletContext.log("Shutting down log4j");
	try {
		Log4jConfigurer.shutdownLogging();
	}
	finally {
		// Remove the web app root system property.
		if (exposeWebAppRoot(servletContext)) {
			WebUtils.removeWebAppRootSystemProperty(servletContext);
		}
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:19,代码来源:Log4jWebConfigurer.java

示例2: contextDestroyed

import org.springframework.util.Log4jConfigurer; //导入方法依赖的package包/类
@Override
public void contextDestroyed(ServletContextEvent sce) {
    LOG.info("Shutting down Kuali Rice...");
    if (context != null) {
        context.close();
    }
    LOG.info("...completed shutdown of Kuali Rice.");
    Log4jConfigurer.shutdownLogging();
}
 
开发者ID:kuali,项目名称:kc-rice,代码行数:10,代码来源:KualiInitializeListener.java

示例3: contextDestroyed

import org.springframework.util.Log4jConfigurer; //导入方法依赖的package包/类
@Override
public void contextDestroyed(ServletContextEvent sce) {
       LOG.info("Shutting down Kuali Rice...");
       if (context != null) {
           context.close();
       }
       LOG.info("...completed shutdown of Kuali Rice.");
       Log4jConfigurer.shutdownLogging();
   }
 
开发者ID:aapotts,项目名称:kuali_rice,代码行数:10,代码来源:KualiInitializeListener.java

示例4: destroy

import org.springframework.util.Log4jConfigurer; //导入方法依赖的package包/类
public void destroy() {
    Log4jConfigurer.shutdownLogging();
}
 
开发者ID:minotaursu,项目名称:profilerAop,代码行数:4,代码来源:Log4jConfigListener.java

示例5: shutdownLogging

import org.springframework.util.Log4jConfigurer; //导入方法依赖的package包/类
/**
 * Shut down log4j, properly releasing all file locks and resetting the web
 * app root system property.
 *
 * @param servletContext
 *            the current ServletContext
 * @see WebUtils#removeWebAppRootSystemProperty
 */
public static void shutdownLogging(ServletContext servletContext) {
    servletContext.log("Shutting down log4j");
    Log4jConfigurer.shutdownLogging();
}
 
开发者ID:gchq,项目名称:stroom-proxy,代码行数:13,代码来源:Log4jWebConfigurer.java


注:本文中的org.springframework.util.Log4jConfigurer.shutdownLogging方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。