Spring MVC 在非spring-boot应用程序中从spring-boot-actuator公开缓存终结点

xu3bshqb  于 2022-11-14  发布在  Spring
关注(0)|答案(2)|浏览(152)

我正在使用非spring-boot应用程序,但我需要公开将返回应用程序中配置的缓存的端点。我看到了this帖子,但它是针对spring-boot-actuator版本1.X的,我正在使用spring-boot-actuator版本2.1.3.RELEASE,因为此版本中提供该高速缓存端点。

fcipmucu

fcipmucu1#

您是否尝试过将以下内容添加到应用程序.yml文件中?

management:endpoints.web.exposure.include: ["caches", etc....`]
management.endpoint.caches.enabled:true
3pvhb19x

3pvhb19x2#

是否设置了执行器终点?

management.endpoints.web.base-path // default /actuator

在这种情况下,您应该在路径中包含端点。

http://localhost:8080/actuator/caches

相关问题