日志管理,springboot

2021-07-20 00:05

阅读:591

标签:oid   stdout   应该   实现类   pes   日志功能   EAP   项目   bst   

1.市面上的日志框架;
JULJCLJboss-logginglogbacklog4jlog4j2slf4j....
2.

技术分享图片

日志门面: SLF4J
日志实现:Logback
SpringBoot:底层是Spring框架,Spring框架默认是用JCL
SpringBoot选用 SLF4jlogback

3.SLF4j使用
3.1如何在系统中使用SLF4j   https://www.slf4j.org
以后开发的时候,日志记录方法的调用,不应该来直接调用日志的实现类,而是调用日志抽象层里面的方法;
给系统里面导入slf4jjarlogback的实现jar

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HelloWorld {
    public static void main(String[] args) {
        Logger logger = LoggerFactory.getLogger(HelloWorld.class);
        logger.info("Hello World");
    }
}    

理想使用情况:

技术分享图片

3.2但是,当使用框架时,各框架有自己使用的日志框架,因此需要下述处理方式:

 如何让系统中所有的日志都统一到slf4j
a、将系统中其他日志框架先排除出去;
b、用中间包来替换原有的日志框架;
c、我们导入slf4j其他的实现

案例1:slf4j+logback

技术分享图片

 

 案例二:slf4j+log4j

技术分享图片

 

 4.SpringBoot使用它来做日志功能

 

org.springframework.boot
    spring‐boot‐starter‐logging

4.1底层依赖关系

技术分享图片

4.2总结:
1)、SpringBoot底层也是使用slf4j+logback的方式进行日志记录
2)、SpringBoot也把其他的日志都替换成了slf4j
3)、中间替换包?

@SuppressWarnings("rawtypes")
public abstract class LogFactory {
    static String UNSUPPORTED_OPERATION_IN_JCL_OVER_SLF4J =
    "http://www.slf4j.org/codes.html#unsupported_operation_in_jcl_over_slf4j";
    static LogFactory logFactory = new SLF4JLogFactory();

}

4)、如果我们要引入其他框架?一定要把这个框架的默认日志依赖移除掉?
以排除Spring默认日志框架为例,Spring框架用的是commons-logging

org.springframework
    spring‐core
    commons‐logging
            commons‐logging
        

SpringBoot能自动适配所有的日志,而且底层使用slf4j+logback的方式记录日志引入其他框架的时候,只需要把这个框架依赖的日志框架排除掉即可

 5.使用日志

package com.zy.log;

import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HelloWorldLog {

    // 记录器
    Logger logger = LoggerFactory.getLogger(getClass());

    @Test
    public void fn(){
        //日志的级别;
        //由低到高 trace//可以调整输出的日志级别;日志就只会在这个级别以以后的高级别生效
        logger.trace("这是trace日志...");
        logger.debug("这是debug日志...");
        //SpringBoot默认给我们使用的是info级别的,没有指定级别的就用SpringBoot默认规定的级别;root级别
        logger.info("这是info日志...");
        logger.warn("这是warn日志...");
        logger.error("这是error日志...");
    }
}
日志输出格式:
	%d表示日期时间,
	%thread表示线程名,
	%‐5level:级别从左显示5个字符宽度
	%logger{50} 表示logger名字最长50个字符,否则按照句点分割。
	%msg:日志消息,
	%n是换行符
	%d{yyyy‐MM‐dd HH:mm:ss.SSS} [%thread] %‐5level %logger{50} ‐ %msg%n

 SpringBoot修改日志的默认配置(application.properties)

logging.level.com.zy=trace

# 不指定路径在当前项目下生成springboot.log日志
#logging.path=

# 可以指定完整的路径;
#logging.file=F:/springboot.log

# 在当前磁盘的根路径下创建spring文件夹和里面的log文件夹;使用 spring.log 作为默认文件
logging.path=/spring/log

# 在控制台输出的日志的格式
logging.pattern.console=%d{yyyy‐MM‐dd} [%thread] %‐5level %logger{50} ‐ %msg%n

# 指定文件中日志输出的格式
logging.pattern.file=%d{yyyy‐MM‐dd} === [%thread] === %‐5level === %logger{50} ==== %msg%n

技术分享图片

指定配置:

技术分享图片

springProfile name="staging">
    ‐‐ configuration to be enabled when the "staging" profile is active ‐‐>
    可以指定某段配置只在某个环境下生效
springProfile>

例如:

appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
    ‐‐
        日志输出格式:
        %d表示日期时间,
        %thread表示线程名,
        %‐5level:级别从左显示5个字符宽度
        %logger{50} 表示logger名字最长50个字符,否则按照句点分割。
        %msg:日志消息,
        %n是换行符
    ‐‐>
    layout class="ch.qos.logback.classic.PatternLayout">
        springProfile name="dev">
            pattern>
                %d{yyyy‐MM‐dd HH:mm:ss.SSS} ‐‐‐‐> [%thread] ‐‐‐> %‐5level %logger{50} ‐ %msg%n
            pattern>
        springProfile>
        springProfile name="!dev">
            pattern>
                %d{yyyy‐MM‐dd HH:mm:ss.SSS} ==== [%thread] ==== %‐5level %logger{50} ‐ %msg%n
            pattern>
        springProfile>
    layout>
appender>

如果使用logback.xml作为日志配置文件,还要使用profile功能,会有以下错误

no applicable action for [springProfile] 

 

6.切换日志框架 方法
6.1可以按照slf4j的日志适配图,进行相关的切换;
slf4j+log4j的方式;

dependency>
    groupId>org.springframework.bootgroupId>
    artifactId>spring‐boot‐starter‐webartifactId>
    exclusions>
        exclusion>
            artifactId>logback‐classicartifactId>
            groupId>ch.qos.logbackgroupId>
        exclusion>
        exclusion>
            artifactId>log4j‐over‐slf4jartifactId>
            groupId>org.slf4jgroupId>
        exclusion>
    exclusions>
dependency>
dependency>
    groupId>org.slf4jgroupId>
    artifactId>slf4j‐log4j12artifactId>
dependency>

6.2切换为log4j2

dependency>
    groupId>org.springframework.bootgroupId>
    artifactId>spring‐boot‐starter‐webartifactId>
    exclusions>
        exclusion>
            artifactId>spring‐boot‐starter‐loggingartifactId>
            groupId>org.springframework.bootgroupId>
        exclusion>
    exclusions>
dependency>
dependency>
    groupId>org.springframework.bootgroupId>
    artifactId>spring‐boot‐starter‐log4j2artifactId>
dependency>

 

 

 

日志管理,springboot

标签:oid   stdout   应该   实现类   pes   日志功能   EAP   项目   bst   

原文地址:https://www.cnblogs.com/psy-code/p/9521031.html


评论


亲,登录后才可以留言!