主机参考:VPS测评参考推荐/专注分享VPS服务器优惠信息!若您是商家可以在本站进行投稿,查看详情!此外我们还提供软文收录、PayPal代付、广告赞助等服务,查看详情! |
我们发布的部分优惠活动文章可能存在时效性,购买时建议在本站搜索商家名称可查看相关文章充分了解该商家!若非中文页面可使用Edge浏览器同步翻译!PayPal代付/收录合作 |
在 MyBatis 中,必须使用 TypeHandler 将 LocalDateTime 类型映射到数据库字段。 下面是一个示例:
- 创建自定义 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;
}
}
- 在MyBatis配置文件中注册TypeHandler
<typeHandlers>
<typeHandler 处理程序="com.example.LocalDateTimeTypeHandler"/>
</typeHandlers>
- 在 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进行数据库操作(mybatisplus localdatetime)
- MyBatis参数与数据库字段的映射关系是什么(mybatis字段映射原理)
- MyBatis 使用ShardingSphere 进行数据库水平分区(mybatis 加表分区)。
- MyBatis 中ShardingSphere 数据库垂直分区技巧
- mybatis中更新操作与数据库事务的关系
本文由主机参考刊发,转载请注明:MyBatis 如何将 localdatetime 映射到数据库字段(MyBatis 如何映射映射器) https://zhujicankao.com/130398.html
评论前必须登录!
注册