您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關怎么在Spring Boot 項目啟動時執行特定方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Springboot給我們提供了兩種“開機啟動”某些方法的方式:ApplicationRunner和CommandLineRunner。
這兩種方法提供的目的是為了滿足,在項目啟動的時候立刻執行某些方法。我們可以通過實現ApplicationRunner和CommandLineRunner,來實現,他們都是在SpringApplication 執行之后開始執行的。
CommandLineRunner接口可以用來接收字符串數組的命令行參數,ApplicationRunner 是使用ApplicationArguments 用來接收參數的,貌似后者更牛逼一些。
先看看CommandLineRunner :
package com.springboot.study; import org.springframework.boot.CommandLineRunner; import org.springframework.stereotype.Component; /** * Created by pangkunkun on 2017/9/3. */ @Component public class MyCommandLineRunner implements CommandLineRunner{ @Override public void run(String... var1) throws Exception{ System.out.println("This will be execute when the project was started!"); } }
ApplicationRunner :
package com.springboot.study; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.stereotype.Component; @Component public class MyApplicationRunner implements ApplicationRunner { @Override public void run(ApplicationArguments var1) throws Exception{ System.out.println("MyApplicationRunner class will be execute when the project was started!"); } }
這兩種方式的實現都很簡單,直接實現了相應的接口就可以了。記得在類上加@Component注解。
如果想要指定啟動方法執行的順序,可以通過實現org.springframework.core.Ordered接口或者使用org.springframework.core.annotation.Order注解來實現。
這里我們以ApplicationRunner 為例來分別實現。
Ordered接口:
package com.springboot.study; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.core.Ordered; import org.springframework.stereotype.Component; /** * Created by pangkunkun on 2017/9/3. */ @Component public class MyApplicationRunner implements ApplicationRunner,Ordered{ @Override public int getOrder(){ return 1;//通過設置這里的數字來知道指定順序 } @Override public void run(ApplicationArguments var1) throws Exception{ System.out.println("MyApplicationRunner1!"); } }
Order注解實現方式:
package com.springboot.study; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.core.Ordered; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; @Component @Order(value = 1) public class MyApplicationRunner implements ApplicationRunner{ @Override public void run(ApplicationArguments var1) throws Exception{ System.out.println("MyApplicationRunner1!"); } }
springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。
關于怎么在Spring Boot 項目啟動時執行特定方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。