@Component 개발자가 생성한 Class를 Spring의 Bean으로 등록할 때 사용하는 Annotation Spring은 해당 Annotation을 보고 Spring의 Bean으로 등록합니다. - MVC패턴에 맞게 구체적으로 등록 가능 @Controller Spring에게 해당 Class가 Controller의 역할을 한다고 명시하기 위해 사용하는 Annotation Controller 빈 스캐닝을 통해 자동으로 빈 등록 - 예제) @Controller //Controller타입의 어노테이션을 붙여주면 BeanScanning을 통해서 자동으로 bean등록 public class MemberController { @Service Service Class에서 쓰인다. 비즈니스 로직을 수행하는 Clas..