zl程序教程

您现在的位置是:首页 >  后端

当前栏目

一个完整的java程序示例_write javabean error fastjson

JAVA程序 Error 一个 示例 完整 Write fastjson
2023-06-13 09:13:40 时间

大家好,又见面了,我是你们的朋友全栈君。

import org.springframework.web.util.WebUtils; //導入方法依賴的package包/類

/**

* Initialize logback, including setting the web app root system property.

*

* @param servletContext the current ServletContext

* @see WebUtils#setWebAppRootSystemProperty

*/

public static void initLogging(ServletContext servletContext) {

// Expose the web app root system property.

if (exposeWebAppRoot(servletContext)) {

WebUtils.setWebAppRootSystemProperty(servletContext);

}

// Only perform custom logback initialization in case of a config file.

String location = servletContext

.getInitParameter(CONFIG_LOCATION_PARAM);

if (location != null) {

// Perform actual logback initialization; else rely on logback’s

// default initialization.

try {

// Return a URL (e.g. “classpath:” or “file:”) as-is;

// consider a plain file path as relative to the web application

// root directory.

if (!ResourceUtils.isUrl(location)) {

// Resolve system property placeholders before resolving

// real path.

location = SystemPropertyUtils

.resolvePlaceholders(location);

location = WebUtils.getRealPath(servletContext, location);

}

// Write log message to server log.

servletContext.log(“Initializing logback from [” + location

+ “]”);

// Initialize without refresh check, i.e. without logback’s

// watchdog thread.

LogbackConfigurer.initLogging(location);

} catch (FileNotFoundException ex) {

throw new IllegalArgumentException(

“Invalid ‘logbackConfigLocation’ parameter: “

+ ex.getMessage());

}

}

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/191974.html原文链接:https://javaforall.cn