Techspace

IT happens only in IT

Hibernate Error – Identifier of an instance altered from 1 to 1

Problem:-Getting the error ” identifier of an instance of com.sample.db.Sample altered from 1 to 1″

Solution:- Check whether the java type of the identifier field in the Data Object, the type of the field in the hibernate xml file and the type of the column in the database are compatible types or not.

Explanation:- I had faced this strange problem today. I am using struts, hibernate and spring.

I found out that the problem roots from

public void

checkId(Object object, EntityPersister persister, Serializable id, EntityMode entityMode) method of DefaultFlushEntityEventListener class.

I solved this problem by changing the type of the id field in the class and the hbm.xml file.

We made some mistakes in declaring getter and setter methods and id field for this object. (therefore it is advisable to use Hibernate tools or other reverse engineer tools to generate your data object and hbm files)

The sample class was as follows

class Sample{

integer sampleId;

String sampleName;

public int getSampleId(){

….

}

public void setSampleId(int i){

…..

}

}

And this was the hbm file declaration

<id
name=”sampleId”
type=”integer”
column=”sample_id”
unsaved-value=”0″>
<generator class=”identity” />
</id>

<property
name=”sampleName”
type=”string”
column=”sample_name”
length=”50″
not-null=”true”
unique=”true”
/>

The problem was that in the database the type of the field was smallint which corresponds to the short data type in Java. Therefore somewhere in the org.hibernate.type.Type class hierarchy the

public boolean isEqual(Object x, Object y, EntityMode entityMode) method was failing.

What I did is I modified the Data Object and the hbm file like this

class Sample{

integer sampleId;

String sampleName;

public int getSampleId(){

public short getSampleId(){

….

}

public void setSampleId(int i){

public void setSampleId(short s){

…..

}

}

<id
name=”sampleId”
type=”integer”

type=”short”

column=”sample_id”
unsaved-value=”0″>
<generator class=”identity” />
</id>

May 16, 2007 Posted by | Hibernate | 14 Comments

   

Follow

Get every new post delivered to your Inbox.