タイトル: @Component
本稿はSpringFramewordの@Componentについて説明します。
@Componentとは
@Componentは付与したクラスはSpirngのコンポーネントとして認識され、ApplicationContextに登録されることで、DI対象のクラスとなります。
以下、簡単なサンプルです。
@Component public void componentMethod() { } |