<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.4.5</version>
</dependency>
springdoc:
api-docs:
enabled: true
show:
actuator: true
management:
endpoints:
web:
exposure:
include= "*"
expose: "*"
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to bind properties under 'management.endpoints.web.exposure' to org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties$Exposure:
Reason: No converter found capable of converting from type [java.lang.String] to type [org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties$Exposure]
Action:
Update your application's configuration
如何修复此异常?
您的YAML有一个=而不是一个:
和删除暴露:
错误:
management:
endpoints:
web:
exposure:
include= "*"
expose: "*"
management:
endpoints:
web:
exposure:
include: "*"
应用yml在带有主类和hibernate的模块中: 主要pom: 我的模块pom: 在父项目中: 错误:
在我的项目中有2个资源属性 1.application.properties 2. 应用开发.性能 此类使用开发的值属性 我使用 application-development.properties 作为我的项目资源 因此,我使用以下命令运行该项目: < code > mvn spring-boot:run-D spring . profiles . active = development 但是
背景资料 Spring Actuctor提供的管理URL在点击关闭后似乎仍然运行良好。 发布前控制台输出 10:01:42.496[main]INFO O.s.B.C.E.T.TomCatEmbeddedServletContainer-Tomcat在端口上启动:8002(http)10:01:42.499[main]INFO com.xyz.api.main-在5.956秒内启动main(JVM
我使用自动配置(仅通过注释)运行Spring启动和kafka,并在.yaml文件中定义了道具,即: 它工作得很好,spring maps即字段group-id正确。 但是当我尝试使用相同的yaml文件手动配置Kafka(使用消费者工厂和消费者配置)时,我遇到了问题。在类中,消费者配置Kafka属性以 命名。在名称中,而不是 _ 即: 所以我不能把它们加载到map中,然后把map传递给Consume
从这份官方文件中,很难确定这两个模块之间有什么区别。 谁能提供一个官方和规范的答案来解释两者的区别吗?
{“Status”:“Down”} 我需要做什么才能显示自定义健康状况指示器?