有人可以帮助我弄清楚如何在不使用自动配置依赖项的情况下启用执行器端点吗?
我正在开发一个Spring-Boot 2项目,但是禁止启动poms和自动配置依赖项。
答案 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=*