中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

闽侯县| 佛冈县| 屏边| 克东县| 长治市| 河源市| 固镇县| 岳池县| 连南| 宿松县| 德化县| 南丹县| 香格里拉县| 武川县| 涟水县| 宁德市| 仙桃市| 商城县| 龙泉市| 乐清市| 侯马市| 中西区| 夹江县| 龙海市| 通辽市| 五家渠市| 六安市| 嘉定区| 河曲县| 巴青县| 武平县| 清水县| 晋江市| 英超| 绍兴市| 纳雍县| 乌审旗| 安义县| 大英县| 左贡县| 特克斯县|