How to create an auto-generated Date/timestamp field in a Play! / JPA?

51,135

Solution 1

There is a code snippet that you can adapt to achieve what you want. Take a look:

// Timestampable.java

package models;

import java.util.Date;

import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
import javax.persistence.Version;

import play.db.ebean.Model;

@MappedSuperclass
public class Timestampable extends Model {

  @Id
  @GeneratedValue
  public Long id;

  @Column(name = "created_at")
  public Date createdAt;

  @Column(name = "updated_at")
  public Date updatedAt;

  @Version
  public int version;

  @Override
  public void save() {
    createdAt();
    super.save();
  }

  @Override
  public void update() {
    updatedAt();
    super.update();
  }

  @PrePersist
  void createdAt() {
    this.createdAt = this.updatedAt = new Date();
  }

  @PreUpdate
  void updatedAt() {
    this.updatedAt = new Date();
  }
}

Solution 2

I think you can achieve it in at least two ways.

Database default value

I think the easiest way would be to mark the column as updateable=false, insertable=false (this will give you immutability - the JPA will not include this column into INSERT and UPDATE statements) and setting the database column to have a default value of NOW.

JPA Lifecycle callback methods

Other way would be to provide a @PrePersist lifecycle callback method which would set your date object to the actual date new Date(). Then you would need to make sure no one will edit this value, so you shouldn't provide any setters for this property.

If you want the date to be updated when entity is modified you could, similarly, implement @PreUpdate lifecycle callback method which would set the actual modification date.

Just remember that if you're working with Date objects you should do a defensive copy of your Date object (so you should return something like new Date(oldDate.getTime()); instead of plain return oldDate).
This will prevent users from using getter of your Date and modifying its state.

Solution 3

I think it's a little bit clearly

    @Column(name = "created_at")
    @CreationTimestamp
    private LocalDateTime createdAt;

    @Column(name = "updated_at")
    @UpdateTimestamp
    private LocalDateTime updatedAt;
Share:
51,135
ripper234
Author by

ripper234

See blog or LinkedIn Profile

Updated on July 05, 2022

Comments

  • ripper234
    ripper234 almost 2 years

    I'd like to add a Date/DateTime/Timestamp field on an entity object, that will be automatically created when the entity is created/persisted and set to "now", never to be updated again.

    Other use cases included fields that were always updated to contain the last modification date of the entity.

    I used to achieve such requirements in the mysql schema.

    What's the best way to do this in Play! / JPA?

  • ripper234
    ripper234 over 12 years
    Where would I mark the column updateable=false etc... ? Using an annotation? Also, why do I need a defensive copy on getters? Getters will not call save() anyway, so how can the value change?
  • Piotr Nowicki
    Piotr Nowicki over 12 years
    Yes, adding the @Column annotation on your date field (or doing in the orm.xml file if you use it). The java.util.Date is a mutable class. User can get it using getter, so he obtains a reference to your class Date field. He can invoke i.e. date.setTime(1) thus changing the date state. Then the JPA will persist your date object which was changed by the user.
  • ripper234
    ripper234 over 12 years
    JPA will only persist if you call save() explicitly. Anyway, if by "users" you mean "people who are able to write Java code in my project", that's a non-issue for me. If you meant actual visitors to my site, I don't get how they can do anything to call set on the date object.
  • Piotr Nowicki
    Piotr Nowicki over 12 years
    1. I was referring not only to persist but to update of your entity (or do you plan not to update it ever?). 2. By 'user' I mean 'user of your class', not the visitors of your website.
  • Piotr Nowicki
    Piotr Nowicki over 12 years
    A word of explanation. In EclipseLink, there is no need for defensive copy of a java.util.Date object. EclipseLink, by default, has eclipselink.temporal.mutable option set to true which requires it to treat Java-mutable Date field as JPA-immutable Date field. Every operation which tries to invoke oldDate.setTime(-) will be ignored and will not be reflected in persisted value. Don't know how Hibernate works in this case.
  • Buminda
    Buminda over 6 years
    This worked, thanks. In addition to the above if you dont put the column property @Column(name = "created_date", updatable = false) during update it will be null.
  • Gavin
    Gavin over 3 years
    Useful to know, however as far as I can tell those or Hibernate rather than JPA annotations
  • ntg
    ntg almost 3 years
    Will this set the system's time or the database system's time? I have the problem that sometimes the system time might be wrong and have no control over it, while the db system's time is correct (and more importantly unique)
  • marcospereira
    marcospereira almost 3 years
    Hey @ntg, this will use the system time. I highly recommend that you use UTC to save the dates to avoid this problem between the system and the database. But, depending on the database, you can use default values too. For example, in PostgreSQL: postgresql.org/docs/8.4/ddl-default.html
  • ntg
    ntg almost 3 years
    @marcospereira Yes, I tried to fill date as default (e.g. stackoverflow.com/questions/16609724/… ) but the problem was I did not know how to add the value from JPA (stackoverflow.com/questions/67901807/…), even leaving the field null, it was trying to insert null in the column, ended up making a separate request to fill it... (stackoverflow.com/questions/1659030/…)
  • Alter
    Alter over 2 years
    This solution looks like it has en issue when inserting the timestamp, because the last three digits of the timestamp, milliseconds digits are zero, example: 2021-07-09 12:09:10.820000