🗂
Spring Boot 起動時詳細
- org.springframework.boot.SpringApplication classからスタート
- プロパティの読み込み
- アプリケーションのプロパティファイル(例:application.properties、application.yml)から設定を読み込みます。
- アプリケーションコンテキストの作成
- Spring Bootアプリケーションの起動時に、Spring Frameworkによってアプリケーションコンテキストが作成されます。これにより、依存性注入、コンポーネントスキャンなどの機能が利用できます。
- アプリケーションの起動:アプリケーションコンテキストを初期化し、アプリケーションを実行状態にします。
プロパティの読み込み
-
prepareEnvironment(listeners, applicationArguments)
メソッドは、アプリケーションの実行環境を準備 - このステップでは、アプリケーションに関連する様々な設定ソース(プロパティファイル、環境変数、コマンドライン引数など)から設定情報を集める
アプリケーションコンテキストの作成
-
prepareContext(context, environment, listeners, applicationArguments, printedBanner)
メソッドにより、アプリケーションコンテキストが準備される- 環境設定やプロパティソースがコンテキストに追加される
-
refreshContext(context)
メソッドが呼ばれると、アプリケーションコンテキストが「リフレッシュ」される - 自動設定の実行(autoconfiguration)
- コンテキストのリフレッシュ中に、Spring Bootはクラスパス上のspring.factoriesファイルをスキャン
- EnableAutoConfigurationキーに関連付けられた自動設定クラスを識別
/**
* Run the Spring application, creating and refreshing a new
* {@link ApplicationContext}.
* @param args the application arguments (usually passed from a Java main method)
* @return a running {@link ApplicationContext}
*/
public ConfigurableApplicationContext run(String... args) {
StopWatch stopWatch = new StopWatch();
stopWatch.start();
ConfigurableApplicationContext context = null;
Collection<SpringBootExceptionReporter> exceptionReporters = new ArrayList<>();
configureHeadlessProperty();
SpringApplicationRunListeners listeners = getRunListeners(args);
listeners.starting();
try {
ApplicationArguments applicationArguments = new DefaultApplicationArguments(args);
ConfigurableEnvironment environment = prepareEnvironment(listeners, applicationArguments);
configureIgnoreBeanInfo(environment);
Banner printedBanner = printBanner(environment);
context = createApplicationContext();
exceptionReporters = getSpringFactoriesInstances(SpringBootExceptionReporter.class,
new Class[] { ConfigurableApplicationContext.class }, context);
prepareContext(context, environment, listeners, applicationArguments, printedBanner);
refreshContext(context);
afterRefresh(context, applicationArguments);
stopWatch.stop();
if (this.logStartupInfo) {
new StartupInfoLogger(this.mainApplicationClass).logStarted(getApplicationLog(), stopWatch);
}
listeners.started(context);
callRunners(context, applicationArguments);
}
catch (Throwable ex) {
handleRunFailure(context, ex, exceptionReporters, listeners);
throw new IllegalStateException(ex);
}
try {
listeners.running(context);
}
catch (Throwable ex) {
handleRunFailure(context, ex, exceptionReporters, null);
throw new IllegalStateException(ex);
}
return context;
}
Discussion