我正在使用非spring-boot应用程序,但我需要公开将返回应用程序中配置的缓存的端点。我看到了this帖子,但它是针对spring-boot-actuator版本1.X的,我正在使用spring-boot-actuator版本2.1.3.RELEASE,因为此版本中提供该高速缓存端点。
fcipmucu1#
您是否尝试过将以下内容添加到应用程序.yml文件中?
management:endpoints.web.exposure.include: ["caches", etc....`] management.endpoint.caches.enabled:true
3pvhb19x2#
是否设置了执行器终点?
management.endpoints.web.base-path // default /actuator
在这种情况下,您应该在路径中包含端点。
http://localhost:8080/actuator/caches
2条答案
按热度按时间fcipmucu1#
您是否尝试过将以下内容添加到应用程序.yml文件中?
3pvhb19x2#
是否设置了执行器终点?
在这种情况下,您应该在路径中包含端点。