运行Spring Boot应用程序时如何显示自动配置报告
启动ApplicationContext时出错。要显示自动配置报告,请在启用“调试”的情况下重新运行您的应用程序
当我尝试运行我的Spring Boot" title="Spring Boot">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: truespring:
application:
name: xxxMyLoaderApp
cloud:
config:
uri: http://my-host.address.com:8761/config
回答:
在debug = true
或debug: true
属性/ yml中设置或。它也可以作为参数传递--debug
。
以上是 运行Spring Boot应用程序时如何显示自动配置报告 的全部内容, 来源链接: utcz.com/qa/403509.html