Springboot下的log4j2配置

去掉内置的logback

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

加入log4j2

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

加入 log4j2.xml

只用RollingRandomAccessFile ,其它基本不用

  
      
        /logs  
        log  
      
      
          
              
          
          
              
              
                  
                  
              
              
          
      
  
      
         
          
              
              
          
        
          
              
              
          
       
      
 

springboot自动会扫描class目录下的配置, 扫到就会启用。

你可能感兴趣的:(Springboot下的log4j2配置)