您好,登錄后才能下訂單哦!
一:啟動時完成數據加載等需求
實現ApplicationListener接口,官方文檔截圖:
ApplicationListener接口的泛型類可以使用ApplicationStartedEvent和ApplicationReadyEvent
應用監聽器事件執行先后順序如下:
實現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
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。