我正在使用非spring-boot应用程序,但是我需要公开端点,该端点将返回在应用程序中配置的缓存。我看到了this帖子,但它是针对spring-boot-actuator版本1.X的,并且我正在使用spring-boot-actuator版本2.1.3的版本,因为此版本中提供了缓存端点。
您是否尝试将以下内容添加到application.yml文件?
management:endpoints.web.exposure.include: ["caches", etc....`]
management.endpoint.caches.enabled:true