我们有一个启用了Spring Security的Spring Boot应用程序。每当我们尝试达到 / actuator / health 时,我们都会获得
Whitelabel Error Page -There was an unexpected error (type=Not Found, status=404)
我们在 application.properties
中包含以下内容management.endpoints.web.exposure.include = health,info
management.security.enabled = false
management.security.roles = AMDIN
和 pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
</parent>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
遵循此link。 还有其他需要启用的角色或其他功能吗?