在MyBatis中使用LocalDateTime类型需要在配置文件中指定TypeHandler,以将数据库中的时间戳转换为LocalDateTime对象。可以通过编写自定义的TypeHandler来实现这一功能。
首先需要在配置文件中注册自定义的TypeHandler:
然后编写自定义的TypeHandler类:
public class LocalDateTimeTypeHandler extends BaseTypeHandler{ @Override public void setNonNullParameter(PreparedStatement ps, int i, LocalDateTime parameter, JdbcType jdbcType) throws SQLException { ps.setTimestamp(i, Timestamp.valueOf(parameter)); } @Override public LocalDateTime getNullableResult(ResultSet rs, String columnName) throws SQLException { Timestamp timestamp = rs.getTimestamp(columnName); return timestamp != null ? timestamp.toLocalDateTime() : null; } @Override public LocalDateTime getNullableResult(ResultSet rs, int columnIndex) throws SQLException { Timestamp timestamp = rs.getTimestamp(columnIndex); return timestamp != null ? timestamp.toLocalDateTime() : null; } @Override public LocalDateTime getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { Timestamp timestamp = cs.getTimestamp(columnIndex); return timestamp != null ? timestamp.toLocalDateTime() : null; } }
在Mapper接口中可以直接使用LocalDateTime类型:
public interface UserMapper { @Select("SELECT * FROM user WHERE id = #{id}") User getUserById(Integer id); @Insert("INSERT INTO user (name, create_time) VALUES (#{name}, #{createTime, jdbcType=TIMESTAMP})") void insertUser(@Param("name") String name, @Param("createTime") LocalDateTime createTime); }
这样就可以在MyBatis中使用LocalDateTime类型了。