Skip to content
Advertisement

cannot save to database foreign table new record generate hibernate jpa

Two entities: Person, Pet.
One Person have multi pets, linked by ownerId. Owner class extends Person class. Person class extends BaseEntity. BaseEntity used to generate unique id value. Using thymeleaf web part to input/insert more pets for one specific owners. Pets do inserted to the h2 database. but the ownerId is null.That’s the issue. Repository code:

JavaScript

Full Code: https://github.com/jianheMark/springpetsimplified

BaseEntity code:

JavaScript

PetController partial code:

JavaScript

Owner partial code:

JavaScript

Pet code:

JavaScript

The problem: The problem

Advertisement

Answer

In Pet Controller you save the pet but you do not set the owner of the pet.

Change your code:

JavaScript

You also say owner.getPets().add(pet). Still you do not persist this. You do not save this information in the DB, you just do it internally for your code.

You should try debugging and setting breakpoints on your code, so that you check what you save and what you actually receive.

And try delegating all your business logic to the services. So that Controllers are used only for handling what happens on a specific endpoint call.

Good luck.

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