[JPA] @where deprecated

hanana·2024년 1월 29일
6
post-custom-banner

JPA를 이용하여 SoftDelete를 구현하는 중 @Where 어노테이션에 deprcated 되었다는 안내문구가 나왔다.

https://stackoverflow.com/questions/77178963/is-there-a-replacement-for-the-in-6-3-deprecated-where-and-loader

이곳의 가이드를 참고하여

@Where(clause = "deleted_at is NULL")

부분을

@SQLRestriction("deleted_at is NULL")

으로 변경해주었다!

profile
성숙해지려고 노력하지 않으면 성숙하기까지 매우 많은 시간이 걸린다.

1개의 댓글

comment-user-thumbnail
2024년 4월 23일

很不错,解决了我的问题

답글 달기