Spring Boot 日志处理 - Log4j2

▶ Log4j2 性能

  • https://logging.apache.org/log4j/2.x/performance.html

▶ Spring Boot 依赖与配置

Maven 依赖

        
        
            org.springframework.boot
            spring-boot-starter-web
            
                
                    org.springframework.boot
                    spring-boot-starter-logging
                
            
        

        
        
            org.springframework.boot
            spring-boot-starter-log4j2
        

        
        
            com.lmax
            disruptor
            3.3.6
        

XML 配置 resources/log4j2.xml

  • 混合 sync/async
  • 彩色日志
  • 分类输出到不同文件
  • 自动压缩日志文件并归档




    
    
        /Users/admin/Code/log
        /Users/admin/Code/log/7z
        ????
        %clr{%d{yyyy-MM-dd HH:mm:ss.SSS}}{faint} %clr{%5p} %clr{${sys:PID}}{magenta} %clr{---}{faint} %clr{[%15.15t]}{faint} %clr{%-40.40c{1.}}{cyan} %clr{:}{faint} %m%n%xwEx
    

    
        
        
            
            
            
            
        

        
        
            

            
                
            

            
                
                
                
            

            
            
        

        
        
            

            
                
            

            
                
                
            

            
            
        
    

    
    
        
            
            
            
        

        
            
            
            
        
    


最终效果如下:

Spring Boot 日志处理 - Log4j2_第1张图片

你可能感兴趣的:(Spring Boot 日志处理 - Log4j2)