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

Jef Davis
Jef Davis
29,162 Points

Adding custom message to pattern annotation

I followed the information in the teacher's notes to add successfully a custom message for the size of the name field, but following the same instructions to add a custom message to the color field doesn't override the default error message. Is there a special way to do this when working with the @Pattern annotation as opposed to @Size?

Category.java
@NotNull
@Size(min = 3, max = 12, message = "{category.name.size}")
private String name;

@NotNull
@Pattern(regexp = "#[0-9a-fA-F]{6}", message = "{category.colorCode.pattern}")
private String colorCode;
messages.properties
#Custom message for Category size
category.name.size = The category name must be {min} to {max} characters in length.

#Custom message for Category colorCode
category.colorCode.pattern = You must select a category color.