This seems like such a bonehead question, but I\'ve been chasing my tail around a tree all day. I have a Struts 2 + Spring3/JPA/Hibernate application that inserts a large set in
Use ojdbc6.jar and use the below code against hibernate 3.3 set timestamp instead of java.sql.date or java.util.date
@Id @Temporal(TemporalType.TIMESTAMP) @Column(name = "TDATE", length = 7) public Date getTdate() { return this.tdate; }