[BE] chore: Spring Boot 3.2.5 버전 업그레이드 (#989) #990
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📌 관련 이슈
✨ PR 세부 내용
제목 그대로 Hibernate의 버그를 수정하기 위해 Spring Boot 버전을 3.2.5로 올렸습니다.
그에따라 수정한 점이 있는데, 엔티티에 Enum을 필드로 사용하는 곳에서 명확하게
columnDefinition
을 지정해주어야 합니다.이유는 Hibernate 6.2 부터 변경사항이 생겼기 때문인데, MySQL을 사용한다면 기본으로 데이터타입을
ENUM
으로 사용한다고 합니다.하지만 DB 테이블에서 컬럼의 데이터 타입에 ENUM을 사용하는 것은 안티 패턴이라고 하더군요.
(저 또한 마찬가지로, DB가 비즈니스 로직을 알게되므로 안티패턴이라고 생각합니다 😂)
그 외 테스트를 돌렸을 때 발생하는 문제는 없었습니다.
(기존 버전이 3.1.4를 사용했으니, 마이너 버전 업데이트이므로 크리티컬한 변경은 없어 보입니다)
해당 PR이 머지가 되면 RestTemplate을 사용하던 코드를 RestClient를 사용하도록 리팩터링해도 좋아보이네요.