Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Spring with Hibernate User Messages in Spring Displaying Validation Messages

Rebekah Smith
Rebekah Smith
7,263 Points

Protip for method POST handler, regarding Spring and Thymeleaf user input errors

POST handler method signatures should look exactly like Chris's:

    @RequestMapping(value = "/categories", method = RequestMethod.POST)
    public String addCategory(@Valid Category category, BindingResult result, RedirectAttributes redirectAttributes) {

If you include a Model parameter you will cry. It passes the compiler, but the handler is never hit, and there's no help from logs or browser network panel. This is wrong:

    @RequestMapping(value = "/categories", method = RequestMethod.POST)
    public String addCategory(@Valid Category category, Model model, BindingResult result, RedirectAttributes redirectAttributes) {
Anders Björkland
Anders Björkland
7,481 Points

Is this because Model is associated with HTTP GET method, and not POST?