我有一个Spring-boot项目,它使用spring-boot执行器来提供应用程序统计信息和指标。
通过在项目中添加“spring-boot-starter-actuator”来提供执行器功能。
此时,安全性被禁用,因此项目不会导入spring-security。
使用spring-boot 1.5.x,所有执行器端点(自动提供,作为/ info,以及我特定的端点)都能正常工作。
更新到Spring-boot 2.0.0 M1后,执行器端点不再暴露。调用/ info端点会返回以下错误:
{"timestamp":1496948526890,"status":404,"error":"Not Found","message":"No
message available","path":"/info"}
关于Tomcat的说明:我正在重新定义 tomcat.version 属性,以便使用版本9.
答案 0 :(得分:6)
看起来就像端点不再映射到/ info
testA
并且根据2.0.0 / SNAPSHOT文档,这是预期的。
尝试2017-06-08 13:11:57.817 [main] INFO o.s.b.a.e.mvc.EndpointHandlerMapping - Mapped "{[/application/info || /application/info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
答案 1 :(得分:6)
它再次感动。目前,该网址位于/actuator
下,例如:/actuator/health
。
答案 2 :(得分:3)
试试这个
management:
endpoints:
web:
exposure:
include: '*'
base-path: /actuator
答案 3 :(得分:2)
即使您可以使用管理属性定义特定路径:
management.context-path =
如果您设置了空白区域,则可以根据需要访问“/ info”。