当前位置: 代码迷 >> 综合 >> How to use LocalDateTime in MyBatis
  详细解决方案

How to use LocalDateTime in MyBatis

热度:64   发布时间:2023-12-14 23:49:22.0

??JDK1.8中新增加了时间日期API,功能很强大,但是如何在Mybaits中使用呢?今天我们就来介绍一下。

在这里插入图片描述

for maven

<dependency><groupId>org.mybatis</groupId><artifactId>mybatis-typehandlers-jsr310</artifactId><version>1.0.2</version>
</dependency>

for Gradle

compile("org.mybatis:mybatis-typehandlers-jsr310:1.0.2")
  • MyBatis Type Handlers for JSR 310: Date and Time API
  相关解决方案