Spring Boot 学习之路 LomBok配置INFO ERROR日志提醒

1.引入LomBok配置到pom.xml中的中

 


   org.projectlombok 
   lombok 
   1.16.18 
  

 

2.配置logbok-spring.xml文件

 




    
        
            
                %d - %msg%n
            
        
    
    
    
        
        
            WARN
            DENY
            ACCEPT
        
        
            
                %msg%n
            
        
        
        
            
            /var/log/tomcat/sell/info.%d.log
        
    
    
    
        
        
            ERROR
        
        
            
                %msg%n
            
        
        
        
            
            /var/log/tomcat/sell/error.%d.log
        
    

    
    
        
        
        
    

 

    3.调用测试测试类

 

package com.imooc.sell;


import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
@Slf4j
public class SellApplicationTests {

   @Test
   public void test1() {
      String name = “imooc” ;
      String password = “123456” ;
log .debug(“debug ...”);
log .info(“info ...”);
log .info(“name {},password {}” , name , password);
log .warn(“警告......”);
log .error(“error ...”);
}
                                 

}

 

 

 

 

 

你可能感兴趣的:(Spring,Boot,学习)