카테고리 없음

[jpa] UUID 값 셋팅 오류, org.hibernate.PropertyAccessException: Could not set field value [XXX] value by reflection

냐옴 2023. 5. 16. 11:08

DTO 클래스의 UUID 컬럼 타입이 UUID 인지 확인한다

 

오류

org.hibernate.PropertyAccessException: Could not set field value [XXX] value by reflection

 

해결

// 변경전
private String popupUuid;

// 변경후
private UUID popupUuid;