Home Hibernate Hibernate4 hibernate temporal



hibernate temporal
Posted on: May 17, 2012 at 12:00 AM
In this section you will learn about annotation temporal in hibernate.

hibernate temporal

In this section you will learn about annotation temporal in hibernate.

The temporal data is the data related to time. For example, in a content management system, the creation-date and last-updated date of an article are temporal data. In some cases, temporal data needs precision and you want to store precise date / time or both(TIMESTAMP) in database table.

The temporal  precision is not specified in core Java APIs. @Temporal is a JPA annotation that convert back and forth between time-stamp and java util date. It also convert time-stamp into time. For example, in below snippet , ?@Temporal(TemporalType.DATE)? drops the time value and only preserves the date :

@Temporal(TemporalType.DATE)
@Column(name=?CREATION_DATE?)
private java.util.Date date;

 

Related Tags for hibernate temporal:


More Tutorials from this section

Ask Questions?    Discuss: hibernate temporal  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.