亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot項目怎么實現關閉數據庫配置和springSecurity

發布時間:2021-08-02 10:56:22 來源:億速云 閱讀:318 作者:chen 欄目:開發技術

這篇文章主要介紹“SpringBoot項目怎么實現關閉數據庫配置和springSecurity”,在日常操作中,相信很多人在SpringBoot項目怎么實現關閉數據庫配置和springSecurity問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”SpringBoot項目怎么實現關閉數據庫配置和springSecurity”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

SpringBoot關閉數據庫配置和springSecurity

通過exclude不注入數據源和安全驗證模塊

@SpringBootApplication(exclude={DataSourceAutoConfiguration.class,
        SecurityAutoConfiguration.class})
public class ErpApplication {
 
 public static void main(String[] args) {
  SpringApplication.run(ErpApplication.class, args);
 }
}

優雅的關閉springBoot項目

在很多時候,項目升級我們都需要將服務停止,一般我們都是利用 kill -9 進程ID 直接將進程殺掉。這樣程序不會執行優雅的關閉,而且一些沒有執行完的程序就會直接退出。

emsp;emsp;我們很多時候都需要安全的將服務停止,也就是把沒有處理完的工作繼續處理完成。比如停止一些依賴的服務,輸出一些日志,發一些信號給其他的應用系統,這個在保證系統的高可用是非常有必要的。那么咱么就來看一下幾種優雅停止springboot的方法。

一、 利用spring-boot-starter-actuator

SpringBoot項目怎么實現關閉數據庫配置和springSecurity

1.1 添加依賴

首先引入acturator的maven依賴。

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

1.2 修改配置

默認情況下,actuator的shutdown是disable的,我們需要打開它。在yml中配置:

management:
  server:
    ## 訪問端口
    port: 8081
  endpoint:
    shutdown:
      enabled: true
  endpoints:
    web:
      #base-path: 默認為/actuator
      exposure:
        include:
          - shutdown

1.3 代碼

接下來設置一個bean對象,配置上PreDestroy方法。這樣在停止的時候會打印語句。bean的整個生命周期分為創建、初始化、銷毀,當最后關閉的時候會執行銷毀操作。在銷毀的方法中執行一條輸出日志。

import javax.annotation.PreDestroy;
/**
 * @author luyi
 * @date 2020/10/16
 */
public class TestBean {
    @PreDestroy
    public void preDestroy() {
        System.out.println("TestBean is destroyed");
    }
}

做一個configuration,然后提供一個獲取bean的方法,這樣該bean對象會被初始化。

/**
 * @author luyi
 * @date 2020/10/16
 */
@Configuration
public class ShutDownConfig {
    @Bean
    public TestBean getTerminateBean() {
        return new TestBean();
    }
}

1.4 測試

//一定要POST 訪問
curl -X pcurl -X POST http://localhost:8081/actuator/shutdown

以下日志可以輸出啟動時的日志打印和停止時的日志打印,同時程序已經停止。是不是比較神奇。

SpringBoot項目怎么實現關閉數據庫配置和springSecurity

第二種方法也比較簡單,獲取程序啟動時候的context,然后關閉主程序啟動時的context。這樣程序在關閉的時候也會調用PreDestroy注解。如下方法在程序啟動十秒后進行關閉。

/* method 2: use ctx.close to shutdown all application context */
ConfigurableApplicationContext ctx = SpringApplication.run(ShutdowndemoApplication.class, args);
    try {
        TimeUnit.SECONDS.sleep(10);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    ctx.close();

二、關閉ApplicationContext

	 private static ConfigurableApplicationContext context = null;
    public static void main(String[] args) {
        context = SpringApplication.run(TimerApplication.class, args);
    }
    @RequestMapping("/closeContext")
    public void closeContext() {
        if (context != null) {
            context.close();
        }
    }
    @Override
    public void run(String... args) throws Exception {
        starterDemo.welcome();
    }

三、通過監聽pid

 public static void main(String[] args) {
        SpringApplication application = new SpringApplication(TimerApplication.class);
        application.addListeners(new ApplicationPidFileWriter("/home/luyi/Desktop/app.pid"));
        application.run();
    }

在springboot啟動的時候將進程號寫入一個app.pid文件,生成的路徑是可以指定的,可以通過命令直接停止服務(進程ID可以直接在這個文件中看到),這個時候bean對象的PreDestroy方法也會調用的。這種方法大家使用的比較普遍,寫一個start.sh用于啟動springboot程序,然后寫一個停止程序將服務停止。

cat /home/luyi/Desktop/app.id | xargs kill 命令直接停止服務

四、SpringApplication.exit()

通過調用一個SpringApplication.exit()方法也可以退出程序,同時將生成一個退出碼,這個退出碼可以傳遞給所有的context。這個就是一個JVM的鉤子,通過調用這個方法的話會把所有PreDestroy的方法執行并停止,并且傳遞給具體的退出碼給所有Context。通過調用System.exit(exitCode)可以將這個錯誤碼也傳給JVM。程序執行完后最后會輸出:Process finished with exit code 0,給JVM一個SIGNAL。

public static void exitApplication(ConfigurableApplicationContext context) {
    int exitCode = SpringApplication.exit(context, (ExitCodeGenerator) () -> 0);
    System.exit(exitCode);
}

小結

1.通過接口的方式一定要注意接口的安全問題

2.用第三種比較好,我們可以啟動和停止都通過寫腳本實現,比較安全,也比較方便。

到此,關于“SpringBoot項目怎么實現關閉數據庫配置和springSecurity”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

拜城县| 历史| 台东市| 米易县| 星子县| 民丰县| 六枝特区| 麻江县| 孝感市| 陆良县| 汕尾市| 东山县| 吉木萨尔县| 山西省| 桃源县| 城口县| 娱乐| 洮南市| 锦州市| 光山县| 广汉市| 丹棱县| 康乐县| 沙田区| 大化| 平遥县| 额济纳旗| 喀喇沁旗| 宁城县| 杭锦后旗| 托里县| 达日县| 井研县| 仪征市| 耿马| 津市市| 辽阳市| 望谟县| 灵璧县| 聂荣县| 漳州市|