springboot的jar包启动后,怎么关闭

来源:2-5 Spring Security自定义决策讲解

Echo鑫

2018-01-19

老师,假若我是用springboot打成jar包,然后java -jar 启动,我该怎么把这应用程序关闭

假若是war包放到TOMCAT里,可以直接进入tomcat里输入./SHUTDOWN.SH,但springboot这种启动方式,就有点不知道该怎么做,现在只知道要么直接ctrl+C,要么kill 进程.

写回答

1回答

Jimin

2018-01-19

你好,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 登录才可以~


祝你学习愉快~

1
4
Echo鑫
回复
Jimin
我就是按着这个来的,前面没设置security.user.name 和security.user.password 可以直接发送post请求关闭,我设置后,我是windows系统,然后就进入gitbash输入curl -u admin:admin -X POST http://127.0.0.1:8081/manage/shutdown,就告诉我没权限,我就纳闷的了/xk
2018-01-19
共4条回复

Java开发企业级权限管理系统

源于企业真实Java项目,涉及大量高级技巧,覆盖权限管理开发技术

2261 学习 · 1347 问题

查看课程