How can I return a i18n localized bean validation message?

For example, in:

@Size(min = 1, message = "{pleaseProvideADescription}")
private String description;

Even though I set properties file in faces-config.xml, and I include a pleaseProvideADescription=Please provide a...

I'm still getting:

{pleaseProvideADescription}

As validation message in tag

Thanks

link|improve this question

33% accept rate
feedback

1 Answer

Bean validation (JSR-303) is completely unrelated to JSF2 (JSR-314). It's another part of standard Java EE API.

The validation messages have to go in a file named ValidationMessages.properties in the classpath root (which you can internationalize with ValidationMessages_xx_XX.properties files).

Put your custom message there. You don't need to configure anything in JSF's faces-config.xml.

link|improve this answer
"Bean validation (JSR-303) is completely unrelated to JSF2 (JSR-314). It's another part of standard Java EE API." But which locale would be used in this case - I assume the server locale? This wouldn't be the one which we need... – user510881 Nov 17 '10 at 14:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.