项目场景:
一个Java中的Date数据类型,我想将之存到数据库的时候存成一个1970年至今的毫秒数,取出来时转换成java的Date,即java的Date与数据库的varchar毫秒值之间转换。
问题描述:
测试转换时报错
package com.itheima.Handler;import org.apache.ibatis.type.BaseTypeHandler;
import org.apache.ibatis.type.JdbcType;import java.sql.*;public class DataTypeHandler extends BaseTypeHandler<Date> {
//将java类型转成数据库需要的类型public void setNonNullParameter(PreparedStatement ps, int i, Date date, JdbcType jdbcType) throws SQLException {
long time=date.getTime();ps.setLong(i,time);}//将数据库中某些数据的类型转换成Java类型//string参数是数据库中要转换的字段名称//resultSet是查询出的结果集public Date getNullableResult(ResultSet rs, String columnName) throws SQLException {
//获得结果集中需要的数据(long)转换成date类型并返回long aLong = rs.getLong(columnName);Date date=new Date(aLong);return date;}public Date getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
long aLong = rs.getLong(columnIndex);Date date=new Date(aLong);return date;}public Date getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
long aLong = cs.getLong(columnIndex);Date date=new Date(aLong);return date;}
}
原因分析:
Date自动引用的时java.sql.Date,而此时我们需要用java.util.Date
解决方案:
import java.util.Date;