Repository
- 따로 쿼리문을 작성하지 않아도 기본적인 CRUD 지원
생성(CREATE),읽기(READ),업데이트(UPDATE),삭제 (DELETE)
- 인터페이스로선언
예제코드
package com.example.study.repository;
import com.example.study.model.entity.User;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface UserRepository extends JpaRepository<User,Long>{
}
반응형
'Spring' 카테고리의 다른 글
JPA Enum 형태 관리방법-회원관리 (0) | 2019.11.08 |
---|---|
springboot Test 코드작성방법 (0) | 2019.11.07 |
Entity 엔티티 (0) | 2019.11.05 |
Naming Convention(네이밍컨벤션) (0) | 2019.11.04 |
Spring boot jdbc 설정 (0) | 2019.11.03 |