Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- NamedEntityGraph
- MYSQL
- mysql =
- deserializer
- RootGraph
- mysql equal null
- https
- 오블완
- getDateCellValue
- @EntityListeners
- fractional seconds
- sendFractionalSeconds
- createEntityGraph
- EmbeddedId
- 티스토리챌린지
- load order
- pooled-lo
- 버전 문자열 비교
- @CreateDate
- getEntityGraph
- +9:00
- yml
- 운동해서 광명찾자
- AuditingEntityListener
- 1*1000
- mysql not equal null
- spring boot
- apatch poi
- MSSQL
- Protecle
Archives
- Today
- Total
목록JPA (1)
Hello
Spring Data JPA Specification 간단한 사용
간단한 검색이 필요한 API를 만들어야했는데, 쿼리 메서드를 사용해 작성하게 되면 서비스 코드에 if의 향연이 펼쳐 질 것 제외 했다. 그리고 프로젝트 규모가 너무 작아 Querydsl 사용하기 보다는 Srping Data JPA의 Specification을 사용해 보았습니다. Specification은 JPA Criteria를 활용해 조회 쿼리를 작성 하도록 지원합니다. Specification 사용 방법 public interface NoticeRepo extends JpaRepository, JpaSpecificationExecutor { } 기존에 사용하던 Repository에 JpaSpecificationExecutor 를 상속합니다. JpaSpecificationExecutor 는 조회 기능만..
spring
2023. 8. 26. 19:00