It was either not specified and/or could not be found for the javaType (java.time.LocalDateTime) : jdbcType (null) combination.
2022. 1. 5. 18:08ㆍIT개발/iBatis & MyBatis
반응형
mybatis에서 자바8 부터 추가된 LocalDate, LocalTime, LocalDateTime.... 등등의 타입을 지원하지 않아 발생된 문제
이다. 하여 아래와 같이 타입을 지원해주는 라이브러리를 추가하면 끝!
=메이븐 버전=
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-typehandlers-jsr310 -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-typehandlers-jsr310</artifactId>
<version>1.0.2</version>
</dependency>
https://mvnrepository.com/artifact/org.mybatis/mybatis-typehandlers-jsr310/1.0.2
=gradle 버전= (사실 위 링크에 가면 종류별로 다있다 ㅋ)
implementation 'org.mybatis:mybatis-typehandlers-jsr310:1.0.2'
반응형
'IT개발 > iBatis & MyBatis' 카테고리의 다른 글
Illegal reflective access by org.apache.ibatis.reflection.Reflector 문제 (0) | 2020.06.03 |
---|---|
전자정부 3.7 ibatis -> Mybatis 변환일지 2탄(oracle -> mssql 변환) (0) | 2018.04.06 |
전자정부 3.7 ibatis -> Mybatis 변환일지 1탄 (0) | 2018.04.06 |
[Mybatis] java.lang.NumberFormatException: For input string: 에러시 (7) | 2017.08.09 |