没有自动配置的Spring Boot 2执行器

时间:2018-11-29 20:56:21

标签: spring-boot spring-boot-starter actuator

有人可以帮助我弄清楚如何在不使用自动配置依赖项的情况下启用执行器端点吗?

我正在开发一个Spring-Boot 2项目,但是禁止启动poms和自动配置依赖项。

1 个答案:

答案 0 :(得分:0)

尝试添加此依赖项:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-actuator</artifactId>
    <version>2.1.0.RELEASE</version>
</dependency>

并将其添加到application.properties上,以启用执行器的所有端点(如果要启用全部)。

  management.endpoints.web.exposure.include=*