티스토리 뷰
spring data jpa 메소드 이름으로 쿼리 생성
http://docs.spring.io/spring-data/jpa/docs/1.4.1.RELEASE/reference/html/jpa.repositories.html
word | Sample | JPQL snippet |
---|---|---|
And | findByLastnameAndFirstname | … where x.lastname = ?1 and x.firstname = ?2 |
Or | findByLastnameOrFirstname | … where x.lastname = ?1 or x.firstname = ?2 |
Between | findByStartDateBetween | … where x.startDate between 1? and ?2 |
LessThan | findByAgeLessThan | … where x.age < ?1 |
GreaterThan | findByAgeGreaterThan | … where x.age > ?1 |
After | findByStartDateAfter | … where x.startDate > ?1 |
Before | findByStartDateBefore | … where x.startDate < ?1 |
IsNull | findByAgeIsNull | … where x.age is null |
IsNotNull,NotNull | findByAge(Is)NotNull | … where x.age not null |
Like | findByFirstnameLike | … where x.firstname like ?1 |
NotLike | findByFirstnameNotLike | … where x.firstname not like ?1 |
StartingWith | findByFirstnameStartingWith | … where x.firstname like ?1 (parameter bound with appended % ) |
EndingWith | findByFirstnameEndingWith | … where x.firstname like ?1 (parameter bound with prepended % ) |
Containing | findByFirstnameContaining | … where x.firstname like ?1 (parameter bound wrapped in % ) |
OrderBy | findByAgeOrderByLastnameDesc | … where x.age = ?1 order by x.lastname desc |
Not | findByLastnameNot | … where x.lastname <> ?1 |
In | findByAgeIn(Collection<Age> ages) | … where x.age in ?1 |
NotIn | findByAgeNotIn(Collection<Age> age) | … where x.age not in ?1 |
True | findByActiveTrue() | … where x.active = true |
False | findByActiveFalse() | … where x.active = false |
빠진 것
lessThenEqual <=
greaterThanEqual >=
JpaRepository interface에 생성해준다.
List<LiveBaseGame> findByGdateAndGtimeBetweenAndGtype(String gdate, String departureGtime, String arrivalGtime, String gtype);
end.
728x90
'Spring > Spring Boot(스프링 부트)' 카테고리의 다른 글
Spring Data Jpa Native Query 사용법 (0) | 2017.04.04 |
---|---|
Spring Boot App gradle로 빌드 할 때 Manifest 에러 날 때 (0) | 2017.02.27 |
spring boot 콘솔에 배너 안나오게 하기 (0) | 2017.02.22 |
XML설정을 함께 사용 할 때는 @ImportResource 를 사용한다. (0) | 2017.02.21 |
Spring Boot로 Hello World 출력하기 (0) | 2017.02.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 싱가폴
- 이직
- 개발자
- docker container case
- 도커각티슈박스
- docker container tissue box
- 도커각티슈케이스
- 도커티슈케이스
- 2017 티스토리 결산
- Sh
- shellscript
- Linux
- vim
- 도커티슈박스
- 도커컨테이너
- docker container
- docker container tissue
- docker container whale
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함