Skip to content
Advertisement

Thymeleaf’s form dont return the object to controller class’s method

I have a SpringBoot-MVC Java application with JPA/Hibernate, using a H2 database to store data and I’m trying to read and change lines of this database through web browser. I had success with the reading, but the edit page’s form with thymeleaf does not send the object I alterated to controller class.

The formulary:

JavaScript

The method that should receive the object of formulary:

JavaScript

The objects is returning null to the save method on controller class. Otherwise when I select a line of the database in browser and click on ‘edit’, the edit page open for edition with the attributes of objects created just perfectly.

Advertisement

Answer

Before demanding an object from Thymeleaf you have to pass the object via your model for Thymeleaf to have it.

Add the following to your controller method:

JavaScript

Make sure Customer class has getters, setters and default constructor.

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