-->
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.  [ 4 posts ] 
Author Message
 Post subject: org.hibernate.TransientObjectException: The given object...
PostPosted: Mon Feb 25, 2008 12:42 pm 
Newbie

Joined: Mon Feb 25, 2008 12:33 pm
Posts: 2
Hallo,

ich habe ein Problem beim Speichern bzw. Updaten eines Objekts in der DB. Das Objekt hat eine Id (PK), einen String und drei weitere Felder, die zusammen unique sein sollen. Einer dieser drei soll nullable sein. Da gibt es aber anscheinend ein Problem mit diesem nullable Feld (siehe Fehlermeldung unten).
Geht das überhaupt dass ein Teil nullable ist, wenn es Teil eines Unique-Constraints ist?

Weiß jemand Rat? Danke im voraus.

Hibernate version:Ver. 3.2.5.ga

Full stack trace of any exception that occurs:
Exception in thread "main" org.hibernate.TransientObjectException: The given object has a null identifier: de.reddot.contentdeployer.persist.RuntimeProperty
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.getUpdateId(DefaultSaveOrUpdateEventListener.java:249)
at org.hibernate.event.def.DefaultUpdateEventListener.getUpdateId(DefaultUpdateEventListener.java:46)
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsDetached(DefaultSaveOrUpdateEventListener.java:217)
at org.hibernate.event.def.DefaultUpdateEventListener.performSaveOrUpdate(DefaultUpdateEventListener.java:33)
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)
at org.hibernate.impl.SessionImpl.fireUpdate(SessionImpl.java:564)
at org.hibernate.impl.SessionImpl.update(SessionImpl.java:552)
at org.hibernate.impl.SessionImpl.update(SessionImpl.java:544)
at de.reddot.contentdeployer.persist.base._BaseRootDAO.update(_BaseRootDAO.java:670)
at de.reddot.contentdeployer.persist.base._BaseRootDAO$3.run(_BaseRootDAO.java:656)
at de.reddot.contentdeployer.persist.base._BaseRootDAO.run(_BaseRootDAO.java:745)
at de.reddot.contentdeployer.persist.base._BaseRootDAO.update(_BaseRootDAO.java:653)
at de.reddot.contentdeployer.persist.base.BaseRuntimePropertyDAO.update(BaseRuntimePropertyDAO.java:156)
at de.reddot.contentdeployer.persist.control.ContentWriteHandler.saveRuntimeProperty(ContentWriteHandler.java:332)
at de.reddot.contentdeployer.content.RuntimePropertyHandler.saveIRuntimeProperty(RuntimePropertyHandler.java:56)
at de.reddot.contentdeployer.source.filter.FullpageFilter.main(FullpageFilter.java:658)

Name and version of the database you are using: HSQL 1.8.0.8


Top
 Profile  
 
 Post subject: Re: org.hibernate.TransientObjectException: The given object
PostPosted: Mon Feb 25, 2008 4:57 pm 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
Metroid Prime wrote:
The given object has a null identifier:

Klingt für mich mehr, als währe der PK null. Wie wird denn die ID generiert?

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 26, 2008 3:02 am 
Newbie

Joined: Mon Feb 25, 2008 12:33 pm
Posts: 2
Erstmal danke für deine Antwort.

Hier das betreffende Skript:

Code:
CREATE TABLE CD.RUNTIME_PROPERTY
(
  runtime_property_id INT GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1) NOT NULL PRIMARY KEY,
  import_definition_id INT NULL,
  import_task_id INT NOT NULL,
  name VARCHAR NOT NULL,
  value VARCHAR NULL,
  CONSTRAINT fk_rtp_id FOREIGN KEY (import_definition_id) REFERENCES CD.IMPORT_DEFINITION (import_definition_id) ON DELETE CASCADE,
  CONSTRAINT fk_rtp_it FOREIGN KEY (import_task_id) REFERENCES CD.IMPORT_Task (import_task_id) ON DELETE CASCADE,
  CONSTRAINT u_rtp_name UNIQUE (import_definition_id, import_task_id, name)
);

GRANT ALL ON CD.RUNTIME_PROPERTY TO cd_user;


Das Problem ist wahrscheinlich nicht die runtime_property_id (PK), sondern das u_rtp_name unique Contraint. Die Kombination aus import_definition_id, import_task_id und name soll unique sein, wobei import_definition_id null sein kann. Ist das überhaupt machbar so? Wenn die import_definition_id nämlich null ist, dann ist der Satz nicht mehr unique, auch wenn alle Felder gleich sind.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 26, 2008 5:41 am 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
Ich kenne diese Geschmacksrichtung von SQL zwar nicht, aber die DB scheint ja wohl die IDs zu generieren. Dies muss auch Hibernate für das ID Attribute entsprechend mitgeteilt werden.

Siehe: http://www.hibernate.org/hib_docs/v3/re ... aration-id
Die Variante 'identity' ist vermutlich die richtige für dich



Metroid Prime wrote:
Erstmal danke für deine Antwort.

Das Problem ist wahrscheinlich nicht die runtime_property_id (PK)


Doch ich vermute genau das ist das Problem.

Jens

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


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

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.