从非非Spring-boot应用程序中的spring-boot-actuator公开缓存端点

问题描述 投票:0回答:1

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

spring-boot spring-mvc spring-boot-actuator
1个回答
0
投票

您是否尝试将以下内容添加到application.yml文件?

management:endpoints.web.exposure.include: ["caches", etc....`]
management.endpoint.caches.enabled:true
© www.soinside.com 2019 - 2024. All rights reserved.