hibernate保存oracle日期时间

用java生成一个带年月日时分秒的时间,通过hibernate对象保存到oracle中的Date字段中,

第一种方法:

java实体类的createDate属性,类型为java.util.Date

hibernate映射文件 <property name="createDate">
                                        <column
name="CREATE_DATE" />
                                 
</property>

command.setCreateDate(new Timestamp(new Date().getTime()));这样就可以set进去

实体类中属性类型为java.util.Date,映射文件 type="date",这个就不能写,写了就只能保存到年月日

第二种方法:

java实体类的createDate属性,类型为java.sql.Timestamp

hibernate映射文件 <property name="createDate"
type="Timestamp">
                                        <column
name="CREATE_DATE" />
                                 
</property>

command.setCreateDate(new Timestamp(new Date().getTime()));这样就可以set进去

时间: 2024-10-12 07:46:06

hibernate保存oracle日期时间的相关文章

ORACLE日期时间函数大全

ORACLE日期时间函数大全    TO_DATE格式(以时间:2007-11-02   13:45:25为例) Year:              yy two digits 两位年                显示值:07        yyy three digits 三位年                显示值:007        yyyy four digits 四位年                显示值:2007 Month:              mm    numbe

ORACLE日期时间函数

ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02   13:45:25为例)           Year:              yy two digits 两位年                显示值:07        yyy three digits 三位年                显示值:007        yyyy four digits 四位年                显示值:2007                    Month

oracle 日期时间函数

ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02   13:45:25为例)           Year:              yy two digits 两位年                显示值:07        yyy three digits 三位年                显示值:007        yyyy four digits 四位年                显示值:2007                    Month

oracle日期时间函数总结

经常写 sql 的同学应该会接触到一些 oracle 的日期时间函数, 例如: 财务软件或者人力资源软件需要按照每年, 每季度, 每月, 甚至每个星期来进行统计. 今天闲来没事, 特意从网上整理了一些资料, 以备日后查阅. 一.常用日期数据格式 1. 获取年的最后一位, 两位, 三位, 四位 select to_char(sysdate,'Y') from dual;    -- 获取年的最后一位 select to_char(sysdate,'YY') from dual;    -- 获取年

【转】ORACLE日期时间 等函数大全

转自:ORACLE日期时间函数大全 ORACLE日期时间函数大全 TO_DATE格式(以时间:2007-11-02   13:45:25为例)           Year:              yy two digits 两位年                显示值:07        yyy three digits 三位年                显示值:007        yyyy four digits 四位年                显示值:2007       

Oracle 日期时间

select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from goods t insert into goods (id,createdate) values ('232',to_date('2014-05-14 10:05:33','yyyy-mm-dd hh24:mi:ss')) 实体类get方法注解 @Temporal(TemporalType.DATE) 如果要向数据库插入时分秒 需要TIMESTAMP Oracle 日期时间

Oracle日期时间操作

<1>加法: select sysdate,add_months(sysdate,12) from dual;        --加1年 select sysdate,add_months(sysdate,1) from dual;        --加1月 select sysdate,to_char(sysdate+7,'yyyy-mm-dd HH24:MI:SS') from dual;   --加1星期 select sysdate,to_char(sysdate+1,'yyyy-mm

[转]ORACLE日期时间函数大全

TO_DATE格式(以时间:2007-11-02   13:45:25为例)           Year:              yy two digits 两位年                显示值:07        yyy three digits 三位年                显示值:007        yyyy four digits 四位年                显示值:2007                    Month:             

ORACLE——日期时间格式化参数详解 之二

2.8 DD 指定日期在当月中第几天(范围:1-31) SQL> select to_char(sysdate,'DD YYYY-MM-DD PM hh24:mi:ss ') from dual; TO_CHAR(SYSDATE,'DDYYYY-MM-DDP') ------------------------------ 27 2015-12-27 下午 18:12:08 2.9 DDD 指定日期在当年中的第几天(范围:1-366) SQL> select to_char(sysdate,'