spring-bootspring-boot使用log4j框架时,提示警告-》log4j:WARN Please initialize the log4j system properly.

Posted jums

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-bootspring-boot使用log4j框架时,提示警告-》log4j:WARN Please initialize the log4j system properly.相关的知识,希望对你有一定的参考价值。

解决方法:

在resources文件夹下,创建一个配置文件:log4j.properties

内容如下:

log4j.rootLogger=WARN, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n

重启APP即可

以上是关于spring-bootspring-boot使用log4j框架时,提示警告-》log4j:WARN Please initialize the log4j system properly.的主要内容,如果未能解决你的问题,请参考以下文章

spring-bootspring-boot使用log4j框架时,提示警告-》log4j:WARN Please initialize the log4j system properly.

spring-boot 快速构建热部署自动配置原理配置文件整合SpringMVCredisjunitmybatis打包部署

spring-boot 快速构建热部署自动配置原理配置文件整合SpringMVCredisjunitmybatis打包部署

业务表单的使用

如果 x 在集合 L 中,如何使用 lambda 函数创建返回 true 的函数 L

如何在 PHP 中使用正则表达式转换标记 (\u \l \U \L \E)?