조회한 데이터의 값이 null 일 때 coalesce("대체할 값")을 사용하여 에러를 해결한다
queryFactory.select(member.name.coalesce(""))
.from(members)
.orderBy(member.id.desc())
.fetch()
member 엔티티의 name 값이 null이 있으면 "" 빈 문자열로 출력
반응형
'Kotlin' 카테고리의 다른 글
[Spring Boot] AOP 적용하기 (0) | 2022.11.01 |
---|---|
[Kotlin]CrossOrigin Annotation 여러 origin 사용 (0) | 2022.10.31 |
[Spring Boot] RestTmplate로 외부 API 통신하기: GET (0) | 2022.10.26 |
[Kotlin] Thymeleaf을 사용한 html 템플릿 이메일 보내기 (0) | 2022.09.29 |
[Kotlin] Spring Boot Email 보내기, 이메일 전송 (0) | 2022.09.26 |
댓글