Skip to content
Advertisement

How to map a table in Spring Data JPA that has 2 columns referencing the same table

I have a table that has 2 fields (pseudonymProfile and realProfile) that both join to the same table. When I try to do the mapping as shown below, I run into an error because the 2 fields use the same name (profile_id) in their @JoinColumn annotation. I’m under the impression that when defining a join column, I need to specify the name as <jointable_primarykeyofjointable> in order for spring boot to correctly do the join, but in this case they have the same name and that causes the error. Can someone help me see what I am missing? Thanks!

JavaScript

Advertisement

Answer

JavaScript

Just an example which should work. JoinColumn#referencedColumnName

But I guess if you drop those @JoinColumns at all everything should work as expected.

UPDATE:

One more thing I find really suspicious is that you use @OneToMany instead of @ManyToOne which would make more sense.

If your business logic was to support multiple profiles for one book you would have to use Collection<Profile> with @OneToMany.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement