We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
マルチプロジェクト構成の Spring Boot アプリケーションを作成し、DI (依存性注入)機能を使用する場合、エントリーポイントとなるサブプロジェクトに ComponentScan アノテーションを付与しパッケージを指定する必要がある。通常、Configration アノテーションが付与されたクラスに追加する。 アプリケーション開発手順の Java 編に上記の説明がないため、手順を実施しても DI 機能を使用することができず、 AlesInfiny Maia 推奨するクリーンアーキテクチャの構成を実装できないため追記を行う。
SpringBootApplication アノテーションは Configration アノテーションを包含しているため、Configration もしくは SpringBootApplication クラスが付与されているクラスに ComponentScan アノテーションを付与し、パッケージを指定する必要がある旨をガイドの以下のページに追記する。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
概要
マルチプロジェクト構成の Spring Boot アプリケーションを作成し、DI (依存性注入)機能を使用する場合、エントリーポイントとなるサブプロジェクトに ComponentScan アノテーションを付与しパッケージを指定する必要がある。通常、Configration アノテーションが付与されたクラスに追加する。
アプリケーション開発手順の Java 編に上記の説明がないため、手順を実施しても DI 機能を使用することができず、 AlesInfiny Maia 推奨するクリーンアーキテクチャの構成を実装できないため追記を行う。
詳細 / 機能詳細(オプション)
SpringBootApplication アノテーションは Configration アノテーションを包含しているため、Configration もしくは SpringBootApplication クラスが付与されているクラスに ComponentScan アノテーションを付与し、パッケージを指定する必要がある旨をガイドの以下のページに追記する。
完了条件
The text was updated successfully, but these errors were encountered: