タイトル: @Component
SEOタイトル: 【Spring】@Componentアノテーションとは
| この記事の要点 |
|---|
|
本稿はSpringFrameworkの@Componentについて説明します。
@Componentとは
@Componentは付与したクラスはSpirngのコンポーネントとして認識され、ApplicationContextに登録されることで、DI対象のクラスとなります。(@Autowiredで指定できるようになる)
以下、@Componentの簡単なサンプルです。
|
@Component public void componentMethod() { } |