我正在使用WAR文件打包并在Wildfly 10上开发的Spring Boot中开发Web应用程序。
由于Logging类冲突的问题,我不得不按照此处的建议spring-boot-starter-logging
排除https://stackoverflow.com/a/23991715使用以下代码:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
现在,应用程序已成功部署,但在Wildfly日志中我只看到了
ERROR [stderr] (ServerService Thread Pool -- 80) Handler java.util.logging.ConsoleHandler is not defined
有关部署的错误消息而不是调试/信息信息。
如何修复Wildfly日志?