小编典典

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

spring-boot

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

当我尝试运行我的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);
    }
}

针对以下达伦的回答,我对我的properties.yml文件进行了如下修改,并生成了自动配置报告,

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

阅读 482

收藏
2020-05-30

共1个答案

小编典典

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

2020-05-30