当前位置: 首页 > 知识库问答 >
问题:

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

丰赞
2023-03-14

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

当我尝试运行我的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下面的回答,我修改了properties.yml文件如下,并生成了自动配置报告,

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

共有3个答案

魏安宁
2023-03-14

在配置属性时,可以在通用应用程序属性中引用许多属性。

# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
debug=false # Enable debug logs.
trace=false # Enable trace logs.
笪涛
2023-03-14

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

江育
2023-03-14

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

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

https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-功能日志控制台输出

 类似资料: