问题:
使用最新版3.4.3.4,mybatis-plus+mybatis。
实体使用localDateTime,导致无法插入数据。
网上说 druid,升级无效。
翻了 stackFlow,很有效。
mybatis版本在3.4以后。 加上这个依赖。
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-typehandlers-jsr310</artifactId>
<version>1.0.0</version>
</dependency>
如果mybatis是3.4以下,mapper.xml文件加上这些
<typeHandlers>
<typeHandler handler="org.apache.ibatis.type.InstantTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.LocalDateTimeTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.LocalDateTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.LocalTimeTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.OffsetDateTimeTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.OffsetTimeTypeHandler" />
<typeHandler handler="org.apache.ibatis.type.ZonedDateTimeTypeHandler" />
</typeHandlers>
UPD:
这个依赖,在3.4.5合并了进去。
真是尴尬,mybatis,刚好卡在3.4-3.4.5中间。导致问题出现。
Type handlers for "JSR 310: Date and Time API" has been merged into mybatis core since 3.4.5.(See #974)
发出来让大家希望少浪费时间放在这个沙雕问题。
再推荐一个前不久看到的解决依赖的问题。
idea中,maven helper插件。很快就能干掉各种循环依赖啥的