반응형
hibernate 사용 시 Entity 역할을 하는 클래스 파일에서
아래와 같은 에러가 발생했는데
Caused by: org.hibernate.MappingException: Could not determine type for: com.google.gson.JsonArray, at table: 클래스명, for columns: [org.hibernate.mapping.Column(컬럼명)]
내용을 한번 보면 컬럼에 지정한 데이터타입이
사용할 수 없는 데이터타입이라 그런데
JSON 형식의 데이터를 넣어주려고
데이터타입을 JsonArray로 지정했다가
이런 에러가 발생하게 된 거다
해결방법은 JsonArray 타입을 사용할 수 없기 때문에
String으로 변환 후에 사용해주면 간단히 해결이 된다
반응형
'Error & Fix' 카테고리의 다른 글
자바 java.util.NoSuchElementException: No value present 에러 해결방법 (1) | 2022.02.09 |
---|---|
ajax Uncaught TypeError: Cannot read properties of undefined (reading 'toLowerCase’) 에러 해결방법 (0) | 2022.02.08 |
자바스크립트 Uncaught SyntaxError: Invalid shorthand property initializer 해결방법 (0) | 2022.02.08 |
Using tabs can lead to unpredictable results 해결방법 (0) | 2022.01.11 |
MySQL JSON_CONTAINS 호출 에러 해결방법 (0) | 2022.01.10 |
댓글