-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Automatisch generierter Timestamp stets 0000-00-00 00:00:00
PostPosted: Mon Jan 05, 2009 1:38 pm 
Beginner
Beginner

Joined: Thu Oct 04, 2007 12:22 pm
Posts: 48
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp

Hibernate version:
3

Name and version of the database you are using:
MySql 5

Ich möchte zwei Timestamps von Hibernate automatisch generieren lassen, einmal das create-date und zum anderen ein modified-date. Entsprechend dem Buch "Java Persistence with Hibernate" habe ich via Annotationen folgendes probiert:

Code:
@Column(name = "created", nullable = false, insertable=false, updatable=false)
@Generated(GenerationTime.INSERT)
private Timestamp  createdDate     = new Timestamp(0);

@Column(name = "modified", nullable = false, insertable=false, updatable=false)
@Generated(GenerationTime.ALWAYS)
private Timestamp  modifiedDate    = new Timestamp(0);


Die Annotationen sind korrekt aus dem Hibernate-Paket eingebunden.

Laut Buch sollte das funktionieren, leider bekomme ich bei Ausführung stets einen Timestamp mit Nulldatum "0000-00-00 00:00:00" generiert. Würde Hibernate überhaupt nicht generieren, müsste ja der Timestamp default von 1970 eingetragen werden.

Im Gegensatz zum Buch steht in der aktuellen Doku, dass GenerationTime.INSERT momentan noch nicht für Timestamps unterstützt werden würde, es solle aber für GenerationTime.ALWAYS funktionieren:

http://www.hibernate.org/hib_docs/v3/reference/en-US/html/mapping-generated.html

Kann mir jemand erklären, wie es richtig gemacht wird oder ob es ein bug ist?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.