Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
264 views
in Technique[技术] by (71.8m points)

JPA Inheritance error mapping query retrieving parent field

I have two related entities using hibernate:

@Entity
@Table(name = "OPERACION")
@Inheritance(strategy = InheritanceType.JOINED)
@DiscriminatorColumn(name = "DTYPE", discriminatorType = DiscriminatorType.STRING)
public abstract class Operacion


@Entity
@Table(name = "OPER_ALTA_NACIMIENTO")
@PrimaryKeyJoinColumn(name = "ID_OPERACION")
@DiscriminatorValue("NACIMIENTO")
public class OperacionAltaNacimiento extends Operacion

And i try to do a query to get the OperacionAltaNacimiento and return result by id but when i see the query:

select count(*) as col_0_0_ from MO_OPER_ALTA_NACIMIENTO operaciona0_ inner join MO_OPERACION operaciona0_1_ on operaciona0_.ID_OPERACION=operaciona0_1_.id **where operaciona0_.id=12**

It is doing well the join between tables but the where is using the child id and it doesn't exist... And it return me and error.

How can i accomplish to do the next query

select count(*) as col_0_0_ from MO_OPER_ALTA_NACIMIENTO operaciona0_ inner join MO_OPERACION operaciona0_1_ on operaciona0_.ID_OPERACION=operaciona0_1_.id **where operaciona0_1_.id=12**
question from:https://stackoverflow.com/questions/66050946/jpa-inheritance-error-mapping-query-retrieving-parent-field

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...