如何在运行 Spring Boot 应用程序时显示自动配置报告

2022-08-31 20:27:27

启动应用程序上下文时出错。若要显示自动配置报告,请在启用“调试”的情况下重新运行应用程序

当我尝试运行我的Spring Boot应用程序时,我收到上述消息。

有谁知道如何在启用“调试”的情况下重新运行应用程序?

我正在 Intellij 中运行应用程序(版本 2016.1.2)

我的跑步者类如下所示,

@Slf4j
@EnableIntegration
@EnableLoaderApplication
@SpringBootApplication
public class LoaderApplicaton {

    public static void main(final String[] args) {
        SpringApplication.run(LoaderApplicaton.class, args);
    }
}

为了回应Darren在下面的回答,我修改了我的属性.yml文件,如下所示,并生成了自动配置报告,

debug: true
spring:
  application:
    name: xxxMyLoaderApp
  cloud:
    config:
      uri: http://my-host.address.com:8761/config

答案 1

设置 或 在您的属性/yml 中。它也可以作为参数传递。debug = truedebug: true--debug

Spring Boot 文档中提供了有关调试标志用途的更多详细信息。

https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-logging-console-output


答案 2

在“运行/调试配置”中,选中“启用调试输出”

enter image description here


推荐