티스토리 뷰
리포지터리의 메서드명은 데이터를 조회하는 쿼리문의 where 조건을 결정하는 역할을 한다.
항목 예제 설명
And | findBySubjectAndContent(String subject, String content) | 여러 컬럼을 and 로 검색 |
Or | findBySubjectOrContent(String subject, String content) | 여러 컬럼을 or 로 검색 |
Between | findByCreateDateBetween(LocalDateTime fromDate, LocalDateTime toDate) | 컬럼을 between으로 검색 |
LessThan | findByIdLessThan(Integer id) | 작은 항목 검색 |
GreaterThanEqual | findByIdGraterThanEqual(Integer id) | 크거나 같은 항목 검색 |
Like | findBySubjectLike(String subject) | like 검색 |
In | findBySubjectIn(String[] subjects) | 여러 값중에 하나인 항목 검색 |
OrderBy | findBySubjectOrderByCreateDateAsc(String subject) | 검색 결과를 정렬하여 전달 |
'프로그래밍 > Spring' 카테고리의 다른 글
자주 사용하는 타임리프의 속성 (0) | 2022.05.28 |
---|---|
스프링의 의존성 주입(Dependency Injection) 방식 3가지 (0) | 2022.05.28 |
Gradle 이란? (라이브러리 의존성) (0) | 2022.05.24 |
[Spring + JPA] Spring Data JPA 란? (0) | 2022.04.01 |
[Spring + JPA] JPA 란? (0) | 2022.04.01 |