91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Springboot啟動后怎么執行

發布時間:2023-04-17 10:44:34 來源:億速云 閱讀:108 作者:iii 欄目:開發技術

這篇文章主要介紹了Springboot啟動后怎么執行的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Springboot啟動后怎么執行文章都會有所收獲,下面我們一起來看看吧。

一、注解@PostConstruct

使用注解@PostConstruct是最常見的一種方式,存在的問題是如果執行的方法耗時過長,會導致項目在方法執行期間無法提供服務。

@Component
public class StartInit {
//
//    @Autowired   可以注入bean
//    ISysUserService userService;

    @PostConstruct
    public void init() throws InterruptedException {
        Thread.sleep(10*1000);//這里如果方法執行過長會導致項目一直無法提供服務
        System.out.println(123456);
    }
}

二、CommandLineRunner接口

實現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接口

實現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

實現接口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啟動后怎么執行”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

阳西县| 洛隆县| 兴化市| 施甸县| 黎川县| 山西省| 博白县| 九龙城区| 金寨县| 旬阳县| 姜堰市| 邹平县| 天全县| 阿鲁科尔沁旗| 京山县| 达州市| 盐池县| 石林| 古交市| 阿克| 集安市| 洪湖市| 郓城县| 丰顺县| 乌拉特前旗| 子洲县| 蓝山县| 嘉鱼县| 东辽县| 林芝县| 青岛市| 图片| 邓州市| 扬州市| 黑水县| 青浦区| 昌宁县| 河东区| 穆棱市| 安陆市| 西昌市|