在 Servlet/Jsp 項目中,若是涉及到系統任務,例如在項目啓動階段要作一些數據初始化操做,這些操做有一個共同的特色,只在項目啓動時進行,之後都再也不執行,這裏,容易想到web基礎中的三大組件( Servlet、Filter、Listener )之一 Listener ,這種狀況下,通常定義一個 ServletContextListener,而後就能夠監聽到項目啓動和銷燬,進而作出相應的數據初始化和銷燬操做,例以下面這樣:html
public class MyListener implements ServletContextListener { @Override public void contextInitialized(ServletContextEvent sce) { //在這裏作數據初始化操做 } @Override public void contextDestroyed(ServletContextEvent sce) { //在這裏作數據備份操做 } }
固然,這是基礎 web 項目的解決方案,若是使用了 Spring Boot,那麼咱們能夠使用更爲簡便的方式。Spring Boot 中針對系統啓動任務提供了兩種解決方案,分別是 CommandLineRunner 和 ApplicationRunner,分別來看。java
使用 CommandLineRunner 時,首先自定義 MyCommandLineRunner1 而且實現 CommandLineRunner 接口:web
@Component @Order(100) public class MyCommandLineRunner1 implements CommandLineRunner { @Override public void run(String... args) throws Exception { } }
關於這段代碼,我作以下解釋:ide
此時啓動項目,run方法就會被執行,至於參數,能夠經過兩種方式來傳遞,若是是在 IDEA 中,能夠經過以下方式來配置參數:微服務
另外一種方式,則是將項目打包,在命令行中啓動項目,而後啓動時在命令行傳入參數,以下:spa
java -jar devtools-0.0.1-SNAPSHOT.jar 三國演義 西遊記
注意,這裏參數傳遞時沒有key,直接寫value便可,執行結果以下:命令行
ApplicationRunner 和 CommandLineRunner 功能一致,用法也基本一致,惟一的區別主要體如今對參數的處理上,ApplicationRunner 能夠接收更多類型的參數(ApplicationRunner 除了能夠接收 CommandLineRunner 的參數以外,還能夠接收 key/value形式的參數)。code
使用 ApplicationRunner ,自定義類實現 ApplicationRunner 接口便可,組件註冊以及組件優先級的配置都和 CommandLineRunner 一致,以下:視頻
@Component @Order(98) public class MyApplicationRunner1 implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception { List<String> nonOptionArgs = args.getNonOptionArgs(); System.out.println("MyApplicationRunner1>>>"+nonOptionArgs); Set<String> optionNames = args.getOptionNames(); for (String key : optionNames) { System.out.println("MyApplicationRunner1>>>"+key + ":" + args.getOptionValues(key)); } String[] sourceArgs = args.getSourceArgs(); System.out.println("MyApplicationRunner1>>>"+Arrays.toString(sourceArgs)); } }
當項目啓動時,這裏的 run 方法就會被自動執行,關於 run 方法的參數 ApplicationArguments ,我說以下幾點:htm
ApplicationRunner 定義完成後,傳啓動參數也是兩種方式,參數類型也有兩種,第一種和 CommandLineRunner 一致,第二種則是 --key=value 的形式,在 IDEA 中定義方式以下:
或者使用 以下啓動命令:
java -jar devtools-0.0.1-SNAPSHOT.jar 三國演義 西遊記 --age=99
運行結果以下:
總體來講 ,這兩種的用法的差別不大 ,主要體如今對參數的處理上,小夥伴能夠根據項目中的實際狀況選擇合適的解決方案。
關注公衆號【江南一點雨】,專一於 Spring Boot+微服務,按期視頻教程分享,關注後回覆 Java ,領取鬆哥爲你精心準備的 Java 乾貨!
原文出處:https://www.cnblogs.com/lenve/p/10709123.html