VPS参考测评推荐
专注分享VPS主机优惠信息
衡天云优惠活动
华纳云优惠活动
最新

MyBatis 如何将 localdatetime 映射到数据库字段(MyBatis 如何映射映射器)

主机参考:VPS测评参考推荐/专注分享VPS服务器优惠信息!若您是商家可以在本站进行投稿,查看详情!此外我们还提供软文收录、PayPal代付、广告赞助等服务,查看详情!
我们发布的部分优惠活动文章可能存在时效性,购买时建议在本站搜索商家名称可查看相关文章充分了解该商家!若非中文页面可使用Edge浏览器同步翻译!PayPal代付/收录合作

在 MyBatis 中,必须使用 TypeHandler 将 LocalDateTime 类型映射到数据库字段。 下面是一个示例:

  1. 创建自定义 TypeHandler 来处理 LocalDateTime 类型的映射
导入 org.apache.ibatis.type.BaseTypeHandler;
导入 org.apache.ibatis.type.JdbcType;

导入 java.sql.CallableStatement;
 导入 java.sql.PreparedStatement;
导入 java.sql.ResultSet;
导入 java.sql.SQLException;
导入 java.time.LocalDateTime;

公共  LocalDateTimeTypeHandler 扩展 BaseTypeHandler {

 ] @Override
 公共 无效 setNonNullParameter(PreparedStatement ps, int i, LocalDateTime 参数, JdbcType jdbcType) 抛出 SQLException {
 ps.setTimestamp(i, Timestamp.valueOf(parameter));
 }

 @Override
 public LocalDateTime getNullableResult(ResultSet rs, String columnName) 抛出 SQLException {
 时间戳 时间戳 = rs.getTimestamp(columnName);
 if (时间戳 != null) {
 返回 时间戳.toLocalDateTime();
 }
 返回 null;
 }
 
 @Override
 public LocalDateTime getNullableResult (结果集 rs,int columnIndex) 抛出 SQLException {
 时间时间戳  时间戳 = rs.getTimestamp(columnIndex);
 if (时间戳!= null) {
 返回时间戳。    toLocalDateTime();
 }
 返回 null;
 }

 @Override
 public LocalDateTime getNullableResult(CallableStatement cs, int columnIndex) 抛出 SQLException {
 时间戳 时间戳 = cs.getTimestamp(columnIndex);
 if  (时间戳!= null) {
 返回 timestamp.toLocalDateTime( );
 }
 返回 null;
 }
}
  1. 在MyBatis配置文件中注册TypeHandler
<typeHandlers>
 <typeHandler 处理程序="com.example.LocalDateTimeTypeHandler"/>
</typeHandlers>
  1. 在 Mapper.xml 文件中使用此 TypeHandler
<结果映射 id= “resultMap” 类型="com.example.MyEntity"> 
 <id 属性="id" column="id" jdbcType=" BIGINT"/>
 <结果 属性="createDate" = “create_date” jdbcType="TIMESTAMP"  javaType="java.time.LocalDateTime" typeHandler="com.example.LocalDateTimeTypeHandler"/>
</resultMap>

这样您就可以将 LocalDateTime 类型映射到数据库字段并对其进行自定义能。 要处理的 TypeHandler。

这几篇文章你可能也喜欢:

本文由主机参考刊发,转载请注明:MyBatis 如何将 localdatetime 映射到数据库字段(MyBatis 如何映射映射器) https://zhujicankao.com/130398.html

【腾讯云】领8888元采购礼包,抢爆款云服务器 每月 9元起,个人开发者加享折上折!
打赏
转载请注明原文链接:主机参考 » MyBatis 如何将 localdatetime 映射到数据库字段(MyBatis 如何映射映射器)
主机参考仅做资料收集,不对商家任何信息及交易做信用担保,购买前请注意风险,有交易纠纷请自行解决!请查阅:特别声明

评论 抢沙发

评论前必须登录!