springboot 專案一啟動,就開始執行某個功能:實現 CommandLineRunner 介面,重寫 run 方法。

guile發表於2019-03-01
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

@Component
public class MyStartupRunner implements CommandLineRunner {
	// 專案啟動後,就執行的功能
	public void run(String... a) throws Exception{
		while(true){
			System.out.println("服務啟動就執行的功能");

			Thread.sleep(3000);
		}
	}

}

實現 CommandLineRunner 介面,重寫 run 方法。

參考: www.cnblogs.com/myblogs-miller/p/9046425.html

 

 

 

 

相關文章