java程序读取时分秒为00:00:00

今儿个碰到一问题 搞了半天 数据库中datetime 时间为2014-12-13 12:20:01 java程序中读取却未能到2014-12-13 00:00:00 纳闷了


bean 定义类型为java.util.Date 


mybatis中配置 用户配置文件自动生成的

<result column="last_online_time" property="lastOnlineTime"
jdbcType="DATE" />


将如上配置改为:

<result column="last_online_time" property="lastOnlineTime"
jdbcType="TIMESTAMP" /> 即可


关于跟多DATA 与TIMESTAMP上百科百度吧

你可能感兴趣的:(java,数据库,mybatis)