您好,登錄后才能下訂單哦!
這篇文章主要介紹了Springboot啟動后怎么執行的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Springboot啟動后怎么執行文章都會有所收獲,下面我們一起來看看吧。
使用注解@PostConstruct是最常見的一種方式,存在的問題是如果執行的方法耗時過長,會導致項目在方法執行期間無法提供服務。
@Component public class StartInit { // // @Autowired 可以注入bean // ISysUserService userService; @PostConstruct public void init() throws InterruptedException { Thread.sleep(10*1000);//這里如果方法執行過長會導致項目一直無法提供服務 System.out.println(123456); } }
實現CommandLineRunner接口 然后在run方法里面調用需要調用的方法即可,好處是方法執行時,項目已經初始化完畢,是可以正常提供服務的。
同時該方法也可以接受參數,可以根據項目啟動時: java -jar demo.jar arg1 arg2 arg3 傳入的參數進行一些處理。
@Component public class CommandLineRunnerImpl implements CommandLineRunner { @Override public void run(String... args) throws Exception { System.out.println(Arrays.toString(args)); } }
實現ApplicationRunner接口和實現CommandLineRunner接口基本是一樣的。
唯一的不同是啟動時傳參的格式,CommandLineRunner對于參數格式沒有任何限制,ApplicationRunner接口參數格式必須是:–key=value
@Component public class ApplicationRunnerImpl implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception { Set<String> optionNames = args.getOptionNames(); for (String optionName : optionNames) { List<String> values = args.getOptionValues(optionName); System.out.println(values.toString()); } } }
實現接口ApplicationListener方式和實現ApplicationRunner,CommandLineRunner接口都不影響服務,都可以正常提供服務,注意監聽的事件,通常是ApplicationStartedEvent 或者ApplicationReadyEvent,其他的事件可能無法注入bean。
@Component public class ApplicationListenerImpl implements ApplicationListener<ApplicationStartedEvent> { @Override public void onApplicationEvent(ApplicationStartedEvent event) { System.out.println("listener"); } }
注解方式@PostConstruct 始終最先執行
如果監聽的是ApplicationStartedEvent 事件,則一定會在CommandLineRunner和ApplicationRunner 之前執行。
如果監聽的是ApplicationReadyEvent 事件,則一定會在CommandLineRunner和ApplicationRunner 之后執行。
CommandLineRunner和ApplicationRunner 默認是ApplicationRunner先執行,如果雙方指定了@Order 則按照@Order的大小順序執行,大的先執行。
關于“Springboot啟動后怎么執行”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Springboot啟動后怎么執行”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。