Spring Boot logging with Lombok

谁说胖子不能爱 提交于 2020-03-17 04:47:07

问题


I would like to use Project Lombok's log annotation in my Spring Boot projects but I don't want to lose the functionality of being able to change the logging from the application.properties.

The Spring logging docs aren't overly clear on what the default logging implementation should be used, and there are 7 Lombok choices!

Any ideas?


回答1:


I would use @Slf4j. Tested the following and it works as expected.

@SpringBootApplication
@Slf4j
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
        log.info("testing logging with lombok");
    }
}

Then you can change the logging level as described here.

logging.level.com.example.DemoApplication=WARN

Note: Below clarifies that SLF4J is correctly handled but point is made in last 5 words!

From the docs: "Default configurations are provided for Java Util Logging, Log4J2 and Logback." ... "By default, If you use the ‘Starters’, Logback will be used for logging. Appropriate Logback routing is also included to ensure that dependent libraries that use Java Util Logging, Commons Logging, Log4J or SLF4J will all work correctly."



来源:https://stackoverflow.com/questions/43901810/spring-boot-logging-with-lombok

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!