본문 바로가기
Develop/Spring

스테레오 어노테이션(Stereotype Annotation)

by jaekk 2018. 9. 30.

스테레오 어노테이션(Stereotype Annotation)


1. 클래스에 붙이는 것

2. 스프링에 의해 관리될 것임을 명시


 종류

 설명 

 @Component 

 특정 타입을 정하기 힘들 때 

 @Service

 Service

 @Repository

 DB

 @Aspect

 

 @Controller

 Controller


web.xml에서 빈 스캐너 등록

1
2
<context:component-scan base-package="com.tistory.board" />  
 
cs


댓글