Spring引导2.0.0.RC1无法访问信息端点

时间:2018-02-02 17:52:23

标签: spring spring-boot spring-boot-actuator

我刚刚将我的spring boot依赖项从2.0.0.M7更新为2.0.0.RC1。 以前每件事都做得很好。但是现在我收到错误,即每当我试图访问信息端点时。

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.boot.context.properties.bind.BindException: Failed to bind properties under 'commit.id' to java.util.Map<java.lang.String, java.lang.Object>

我已将application.yml设置为

   management:
    info:
      git:
       enabled: true
       mode: full

RC1文档具有相同的配置。

1 个答案:

答案 0 :(得分:1)

当git模式设置为full时,您的问题是由Spring Boot 2.0.0.RC1中的regression引起的。您可以通过从YAML文件中删除mode: full行来解决此问题。