ホームページ > Java > &#&チュートリアル > applicationContextAware インターフェースの setApplicationContext メソッド実行の問題と Spring Bean の取得に失敗する

applicationContextAware インターフェースの setApplicationContext メソッド実行の問題と Spring Bean の取得に失敗する

Linda Hamilton
リリース: 2024-11-23 07:53:34
オリジナル
192 人が閲覧しました

この記事では、私が最近遭遇した問題について共有したいと思います。これは皆さんにとって興味深いと思います。

何が問題ですか?

テスト環境と本番環境のソース コードは同じであり、ローカル環境とテスト環境は両方とも正常に動作しますが、サービス クラスの NPE で実行される本番環境のみがロードに失敗し、新しい要件が追加されました。このクラスは、Customize パッケージ (自社開発ツールキット) からインターフェイスを継承します。

プロジェクトの構造

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

Customize の設計は、API とサービスを管理するために Spring に依存しています。 Springの自動スキャンでは、クラスの初期化時にApiEnhancerとServiceEnhancerの共通クラスが読み込まれ、ApplicationContextでインスタンスを取得します。デバッグの結果、ロード時に ApplicationContext が null であり、まだ初期化されていないことがわかりました。 ApplicationContextAwareの実装によりsetApplicationContextメソッド内で初期化されているため、setApplicationContextメソッドが実行されていないと推測されます。

ApplicationContextProvider クラスの読み込みプロセス中、初期化フェーズ中に静的メソッドがメソッド領域に読み込まれます。ただし、ApplicationContext を使用して Bean のインスタンスを取得する場合、静的メソッドはクラス名によって直接呼び出されます。 ApplicationContextProvider がヒープ内にメモリを割り当ててインスタンス化する前に API が作成されている限り、setApplicationContext メソッドは初期化のために呼び出されません。

applicationContextProvider はアノテーション @Component を使用し、Api はアノテーション @RestController を使用し、2 つのクラスは同じパスにあります。ただし、Spring がそれらをスキャンしてロードするとき、特定の順序はありません。つまり、両方のクラスがそれぞれ別のクラスの前に作成される可能性があります。運用環境では、API は applicationContextProvider の前に作成されるため、Bean を取得するためにクラス名によって静的メソッドが直接呼び出されるとき、applicationContext は初期化されていません

解決策

ApplicationContextAware インターフェースの実装クラスの setApplicationContext メソッドが実行されていない場合は、まず実装クラスが遅延読み込みに設定されているか、プロジェクトでグローバル遅延読み込みが設定されているかを確認してください。

このプロジェクトでは、ApiEnhancer インターフェイスと ApplicationContextAware インターフェイスの実装クラスの作成順序が問題の原因でした。また、Api クラスはビジネス ロジックを処理する通常の RESTful API にすぎず、フロントから呼び出されたときにロードできます。最後のページ。したがって、遅延読み込みに変更することで問題は解決しました。

ロード順序の観点から、クラス間の依存関係を最小限に抑えることをお勧めします。やむを得ない場合は、遅延ロード、または @DependsOn、@Order、@Priority などのアノテーションを使用して、Bean のロード順序を制御できます。


本番環境とテスト環境の作成順序が異なるのはなぜですか?

Spring のスキャン処理を確認するためにデバッグしてみましょう。

ClassPathBeanDeterminationScanner の scan メソッドから始めます。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

doScan メソッド

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

ClassPathScanningCandidateComponentProvider

の scanCandidateComponents メソッド

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

PathMatchingResourcePatternResolver

の findAllClassPathResources メソッド

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

doFindPathMatchingJarResources メソッド

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

JarFile は、Java 標準ライブラリの java.util.jar パッケージ内のクラスで、ZipFile を継承および拡張します。 jarFile.entries() は、JarEntryIterator.

という名前のイテレータを返します。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

JarExitIterator は、JarFile の親クラスのエントリを反復する Iterator Pattern の実装です。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

ZipFile のエントリ メソッドは、ZipExitIterator という名前のイテレータを返します。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

ZipExitIterator の nextElement メソッドは next メソッドを呼び出し、次に getNextEntry メソッドを呼び出します。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

getNextEntry は ネイティブ メソッドです。

The setApplicationContext method execution issue of the applicationContextAware interface and failed to get Spring beans

ネイティブ メソッドは Java 以外の言語で実装され、Java 仮想マシン内で呼び出されて基礎となる機能を実装します。この機能は環境 (オペレーティング システムまたは JDK バージョン) によって異なる場合があります。 JAR パッケージ自体には順序がないため、実際の走査順序は、さまざまな JAR パッケージ化ツールや環境に応じて異なる場合があります。

以上がapplicationContextAware インターフェースの setApplicationContext メソッド実行の問題と Spring Bean の取得に失敗するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート