1、在pom.xml文件引入依赖
<!-- 运行状态监控actuator依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
2、配置文件配置
server: port: 8100 #web服务端口 servlet: context-path: /buzheng spring: main: allow-bean-definition-overriding: true #是否允许使用相同名称重新注册不同的bean实现. 默认是允许 datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false&serverTimezone=Asia/Shanghai username: root password: asdfghjkl ### 运行状态监控Actuator management: server: port: 9011 #运行状态监控端口 endpoints: web: exposure: include: "*" base-path: / #配置可远程使用 Actuator 关闭服务 endpoint: shutdown: #关闭服务 enabled: true
3、执行关闭指令
http://localhost:9011/shutdown POST请求
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。