-->
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: Problem changing class on update of Inheritance classes.
PostPosted: Fri Dec 14, 2007 1:53 pm 
Newbie

Joined: Thu Oct 06, 2005 5:36 am
Posts: 8
We have a problem switching classes on an update of a classes hierarchy :

The Hierarchy :

@Entity
@Table(name = "TOTO")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "TOTO_KIND", length = 4)
Class A
{
}

@Entity
@DiscriminatorValue(value = "A")
Class B extends A
{
}

@Entity
@DiscriminatorValue(value = "B")
Class C extends A
{
}

The problem is :

- save an B.
- Clear the session.
- load a B and switch it to a C (make a C with the same ID).*
- Clear the session.
- load the object with the id and instead of a C we're getting a B.

* DiscriminatorValue is not changed on this step

Is there a way fixing this ?


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.