欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

详解Springboot应用启动以及关闭时完成某些操作

时间:2020-11-28 13:30:29|栏目:JAVA代码|点击:

一:启动时完成数据加载等需求

实现ApplicationListener接口,官方文档截图:


ApplicationListener接口的泛型类可以使用ApplicationStartedEvent和ApplicationReadyEvent


应用监听器事件执行先后顺序如下:

  1. ApplicationStartingEvent
  2. ApplicationEnvironmentPreparedEvent
  3. ApplicationPreparedEvent
  4. ApplicationStartedEvent
  5. ApplicationReadyEvent
  6. ApplicationFailedEvent

实现CommandLineRunner和ApplicationRunner完成启动加载数据



二:关闭时完成某些操作

实现ApplicationListener<ContextClosedEvent>

实现DisposableBean接口 


三、spring boot应用关闭操作(Linux/unix/ubuntu环境下进行)

A、非安全验证

1、项目pom.xml添加如下依赖包:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

2、application.properties文件添加如下内容:

#启用shutdownendpoints.shutdown.enabled=true#禁用密码验证endpoints.shutdown.sensitive=false

3、关闭命令:

curl -X POST host:port/shutdown

B、安全验证

1、pom.xml添加如下依赖包:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>

2、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

3、关闭命令:

curl -u admin:admin -X POST http://127.0.0.1:8081/manage/shutdown

上一篇:Java的二叉树排序以及遍历文件展示文本格式的文件树

栏    目:JAVA代码

下一篇:Spring Boot环境属性占位符解析及类型转换详解

本文标题:详解Springboot应用启动以及关闭时完成某些操作

本文地址:http://www.codeinn.net/misctech/26998.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有