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

Binyamin Friedman
Binyamin Friedman
14,615 Points

Where does thymeleaf get the error messages from?

<div class="col s12 l8" th:classappend="${#fields.hasErrors('name')} ? 'error' : ''">
      <input type="text" th:field="*{name}" placeholder="Category Name"/>
      <div class="error-message" th:if="${#fields.hasErrors('name')}" th:errors="*{name}"></div>
</div>

th:errors is the text, but doesn't *{name} reference the name of the category? The name definitely isn't "size must be between 3 and 12"

Where does thymeleaf get the error message from?