Spring Boot啓動及退出加載項

在一個初春的下午,甲跟我說,要在Spring Boot啓動服務的時候,設置表自增的起始值。
因而我用屁股想了一下,不就是在main方法裏折騰嘛。
後來實際操做了一把,發現屁股被打了。html

因而乎,找到官方文檔(以2.1.4爲例),找到這一段:spring

clipboard.png

若是你須要在啓動SpringApplication後執行一些具體的代碼,你能夠實現ApplicaitonRunner或者CommandLineRunner接口。兩個接口都實現了一個工做方式相同的run方法,該方法僅會在SpringApplication.run(...)前執行。app

惟一不一樣的是實現CommandLineRunner接口的run方法參數爲String類型,而實現ApplicaitonRunnerrun方法的參數則是須要ApplicationArguments。官方文檔中有個例子供參考。ide

若是有多個ApplicaitonRunner或者CommandLineRunner接口的實現存在啓動順序,則可使用org.springframework.core.Ordered接口或者org.springframework.core.annotation.Order註解的形式來給他們排序。函數

因爲我沒有參數類型等的限制,因此用哪一個接口都同樣,寫個跟官方不同的,因而代碼大概長這樣:spring-boot

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.ApplicationArguments;
import org.springframework.boot.ApplicationRunner;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;

@Component
public class InstructionStart implements ApplicationRunner {

    private Logger logger = LoggerFactory.getLogger(this.getClass());

    @Autowired
    private JdbcTemplate template;

    @Override
    public void run(ApplicationArguments applicationArguments) throws Exception {
        String increment = "0";
        logger.info("初始化遞增起始值爲:{}", increment);
        template.execute("ALTER TABLE `table` AUTO_INCREMENT = " + increment);
    }
}

深入的意識到腦子和屁股同樣重要。this

寫完啓動項,那麼再把退出也說一下:spa

clipboard.png

每個SpringApplication都應該向JVM註冊一個鉤子函數來確保ApplicationContext能優雅地關閉。使全部的標準Spring生命週期回調(例如DisposableBean接口和@PreDestroy註解)均可用。翻譯

此外,若是你但願beans在調用SpringApplication.exit()時返回特定的退出代碼,則能夠實現org.springframework.boot.ExitCodeGenerator接口,這些退出代碼會被傳給System.exit()做爲返回的狀態碼。官方還給了個例子,就是下面這個。code

@SpringBootApplication
public class ExitCodeApplication {

    @Bean
    public ExitCodeGenerator exitCodeGenerator() {
        return () -> 42;
    }

    public static void main(String[] args) {
        System.exit(SpringApplication
                .exit(SpringApplication.run(ExitCodeApplication.class, args)));
    }
}

固然,ExitCodeGenerator也能夠由異常來實現,當遇到一個這樣的異常時,Sprin Boot會返回實現了getExitCode()方法的退出代碼。

後面退出部分翻譯地磕磕碰碰的,有不對的地方歡迎指正。

原創不易,感謝支持。

相關文章
相關標籤/搜索