본문 바로가기
BE/Error

[Spring Boot] 에러 해결하기 - Attribute was annotated as enumerated, but its java type is not an enum

by 틴디 2024. 8. 22.
728x90
반응형

Attribute [com..xxxx.xxx.xxx.domain.faceinfo.domain.Score.type] was annotated as enumerated, but its java type is not an enum [java.lang.String]

 

    @Id
    @Enumerated(EnumType.STRING)
    private String type;

 

varchar 로 지정한 type이라는 column을 jpa로 엔티티 매핑할 때 생긴 오류이다. 

Enummerated 어노테이션이 잘못된 타입에 사용된 경우 발생한다

String이 아닌 Enum 타입으로 변경해줘야 한다. 

 

Miguel Á. Padriñán님의 사진: https://www.pexels.com/ko-kr/photo/2882552/

728x90
반응형

'BE > Error' 카테고리의 다른 글

[Spring Boot] 한글이 ??? 로 나올 때, 한글 깨짐 이슈  (0) 2024.08.23

댓글