일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- WebClient
- 인터페이스
- @NoArgsConstructor
- 리스트
- mysql
- 내부 정렬
- 마크다운 테이블
- 정렬
- 스택 큐 차이
- 쿼리메소드
- 클래스
- query
- 빅 오 표기법
- 코드
- CleanCode
- 배열
- @ComponentScan
- 마크다운
- 선형 리스트
- 자료구조
- @RequiredArgsConstructor
- 쿠키
- 연결 리스트
- 트리
- 클린코드
- JsonNode
- code
- 계산 검색 방식
- 클린
- java
- Today
- Total
목록쿼리메소드 (4)
Developer Cafe
1. 일반버전 예를 들어, 'bno > 0 order by bno desc'라는 조건을 구현한 findByBnoGreaterThanOrderByBnoDesc() 메소드에 Pageable을 적용하면... public interface BoardRepository extends CrudRepository { // bno > ? ORDER BY bno DESC limit ?, ? public List findByBnoGreaterThanOrderByBnoDesc(Long bno, Pageable paging); } 파라미터에 Pageable이 적용되었고, 리턴 타입으로 List가 적용되었습니다. 테스트하면... @Autowired private BoardRepository repo; @Test public v..
게시물의 bno가 특정 번호보다 큰 게시물을 bno 값의 역순으로 처리하고 싶다면... 'OrderBy' + 속성 + 'Asc or Desc' public interface BoardRepository extends CrudRepository { // bno > ? ORDER BY bno DESC public Collection findByBnoGreaterThanOrderByBnoDesc(Long bno); } Test에서 @Autowired private BoardRepository repo; @Test public void testBnoOrderBy() { // bno가 90보다 큰 데이터를 조회 Collection results = repo.findByBnoGreaterThanOrderByBnoD..
게시물의 title에 특정한 문자가 포함되어 있고, bno가 특정 숫자 초과인 데이터를 조회한다면... public interface BoardRepository extends CrudRepository { // title LIKE % ? % AND BNO > ? public Collection findByTitleContainingAndBnoGreaterThan(String keyword, Long num); } Test에서 @Autowired private BoardRepository repo; @Test public void testByTitleAndBno() { Collection results = repo.findByTitleContainingAndBnoGreaterThan("5", 50L); ..
게시글의 title과 content 속성에 특정한 문자열이 들어있는 게시물을 검색하려면... public interface BoardRepository extends CrudRepositroy { public Collection findByTitleContainingOrContentContaining(String title, String content); } findBy + TitleContaining + Or + ContentContaining과 같은 형태가 됩니다.