无法在Spring Boot应用程序中使用Actuator

时间:2018-07-16 10:25:48

标签: spring-boot spring-boot-actuator

我们有一个启用了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。 还有其他需要启用的角色或其他功能吗?

0 个答案:

没有答案