SpringBoot 中使用 Log4j

SpringBoot 中使用 Log4j
1、pom 文件中排除 slf4j 的依赖
说明:如果你是 spring-boot-starter-web 模块的,同样地,也排除掉 slf4j 的依赖,

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-jerseyartifactId>
    <exclusions>
        <exclusion>
            <artifactId>log4j-over-slf4jartifactId>
            <groupId>org.slf4jgroupId>
        exclusion>
    exclusions>
dependency>

2、引入 log4j 的依赖:

<dependency>
    <groupId>log4jgroupId>
    <artifactId>log4jartifactId>
dependency>

3、自己测试的时候要看到日志起作用了才算。
log4j.properties 配置文件:

log4j.rootLogger=DEBUG,ServerDailyRollingFile,stdout

log4j.appender.ServerDailyRollingFile=org.apache.log4j.DailyRollingFileAppender
log4j.appender.ServerDailyRollingFile.DatePattern='.'yyyy-MM-dd_HH
log4j.appender.ServerDailyRollingFile.File=log4j.log
log4j.appender.ServerDailyRollingFile.layout=org.apache.log4j.PatternLayout
log4j.appender.ServerDailyRollingFile.layout.ConversionPattern=%d - %m%n
log4j.appender.ServerDailyRollingFile.Append=true

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d yyyy-MM-dd HH:mm:ss %p [%c] %m%n

今天在项目里面使用 SpringBoot 集成 log4j,具体的操作参考了下面这篇文章。
这里做一个记录。
http://www.dutycode.com/spring_boot_log4j_shiyong.html

你可能感兴趣的:(SpringBoot,log4j)