1,服务pom依赖jar
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2,修改配置文件
#开启远程关闭服务
management.endpoint.shutdown.enabled=true
#actuator的前缀地址
management.endpoints.web.base-path=/
management.endpoints.web.exposure.include=shutdown
3,测试
http://127.0.0.1:6667/shutdown
说明:6667关闭服务端口名,shutdown本次所做的操作

本文介绍如何通过Spring Boot Actuator实现服务的远程关闭。首先需要在pom.xml中添加spring-boot-starter-actuator依赖,然后在配置文件中启用shutdown端点并设置暴露路径。最后,可以通过发送HTTP请求到指定URL来关闭服务。
226





