It was either not specified and/or could not be found for the javaType (java.time.LocalDateTime) : jdbcType (null) combination.

2022. 1. 5. 18:08IT개발/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'

 

 

반응형