springboot的jar包启动后,怎么关闭
来源:2-5 Spring Security自定义决策讲解

Echo鑫
2018-01-19
老师,假若我是用springboot打成jar包,然后java -jar 启动,我该怎么把这应用程序关闭
假若是war包放到TOMCAT里,可以直接进入tomcat里输入./SHUTDOWN.SH,但springboot这种启动方式,就有点不知道该怎么做,现在只知道要么直接ctrl+C,要么kill 进程.
1回答
-
你好,springboot 还真的有提供自己关闭的方式
首先需要保证引入了依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
application.properties中添加:
#启用shutdown
endpoints.shutdown.enabled=true
#禁用密码验证
endpoints.shutdown.sensitive=false
然后可以调用 http://localhost:8080/shutdown 进行关闭,其中localhost:8080 需要替换为自己实际的地址和端口
如果要配置路径,需要在application.properties中添加
management.context-path=/manage
则关闭命令变为 host:port/manage/shutdown
如果在关闭时需要安全验证,则在pom.xml文件中添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
application.properties中添加:
#开启shutdown的安全验证
endpoints.shutdown.sensitive=true
#验证用户名
security.user.name=admin
#验证密码
security.user.password=admin
#角色
management.security.role=SUPERUSER
# 指定端口
management.port=8081
# 指定地址
management.address=127.0.0.1
这样在请求 http://127.0.0.1:8080/manage/shutdown 时需要使用admin:admin 登录才可以~
祝你学习愉快~
142018-01-19
相似问题