ApplicationContextの起動エラー。自動構成レポートを表示するには、「デバッグ」を有効にしてアプリケーションを再実行します
Spring Bootアプリケーションを実行しようとすると、上記のメッセージが表示されます。
「デバッグ」を有効にしてアプリケーションを再実行する方法を知っている人はいますか?
Intellij(バージョン2016.1.2)でアプリケーションを実行しています
ランナークラスは次のようになります。
@Slf4j
@EnableIntegration
@EnableLoaderApplication
@SpringBootApplication
public class LoaderApplicaton {
public static void main(final String[] args) {
SpringApplication.run(LoaderApplicaton.class, args);
}
}
以下のDarrenの回答に応じて、properties.ymlファイルを次のように修正し、自動構成レポートを作成しました。
debug: true
spring:
application:
name: xxxMyLoaderApp
cloud:
config:
uri: http://my-Host.address.com:8761/config
Properties/ymlでdebug = true
またはdebug: true
を設定します。引数--debug
として渡すこともできます。
プロパティを設定するときに common-application-properties で参照できるプロパティがたくさんあります。
# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
debug=false # Enable debug logs.
trace=false # Enable trace logs.
アプリケーションのYAML/settingsファイルでlogging.level.org.springframework.boot.autoconfigure
プロパティをDEBUG
に設定します。これで十分でしょう。