본문 바로가기
카테고리 없음

[Annotation] 스프링 3계층 Annotation 적용

by 깸뽀 2022. 10. 8.
728x90
더보기

💡 스프링 Annotation

@Component, @Autowired  ⇨ 앞에 '@'를 붙여 선언하면 스프링이 처리

  • 스프림 3계층 Annotation은 모두 @Component
    1. @Controller, @RestController
    2. @Service
    3. @Repository
  • @Repository  간단 설명

 

 

 

  • JpaRepository<**"@Entity 클래스", "@Id 의 데이터 타입">**를 상속받는 interface 로 선언
    • 스프링 Data JPA 에 의해 자동으로 @Repository 가 추가됨
    • 아래 @Repository 역할 대부분을 자동으로 수행해 줌

728x90

댓글