mybatis jdbcType date没有时分秒

Posted zfzf1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis jdbcType date没有时分秒相关的知识,希望对你有一定的参考价值。

jdbcType date 年月日

timestamp 年月日时分秒

 

不写的情况

mybatis默认转换为有时分秒

 

建议写成

<if test="modifyTime != null" >
MODIFY_TIME = #{modifyTime},
</if>

<if test="modifyTime != null" >
MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
</if>





以上是关于mybatis jdbcType date没有时分秒的主要内容,如果未能解决你的问题,请参考以下文章

mybatis中时间比较Date和String

MyBatis日期用法技巧

mybatis查询结果date?

mybatis查询结果date?

mybatis常用jdbcType数据类型以及对应的JavaType

Oracle数据库使用mybatis的时候,实体类日期为Date类型,mybatis里面定义的是Date类型,插入的时候,时分秒全部是12:00:00问题