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