在Spring Boot Web应用程序中调试log4j配置

时间:2018-07-17 12:03:31

标签: spring-boot debugging log4j

我正在开发带有Spring Boot的多模块Webapp。我的Web应用程序始终从dependend子模块中获取log4j配置,这是不希望的。有没有显示调试信息的方法,使用了哪个logback或log4j文件?

1 个答案:

答案 0 :(得分:0)

您需要通过将默认设置添加到pom来排除默认设置

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
    <exclusions>
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-logging</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-log4j</artifactId>
</dependency>