Two stupid questions about bean validation used in JSF:
How can I remove the prefix
form1:userName:from the output message?<h:message for="userName" />Which gets:
form1:userName: Please enter a valid username (5-20 characters)I‘d also like to translate the name
form1:userNametoUser Name, it's easy to implement such translation but I can't find where to build the message.I have a custom validator, say
@CreditCard, its default message is{foo.bar.BadCreditNumber}@interface CreditCard { String message() default "{foo.bar.BadCreditNumber}"; }And the message is defined in
foo/bar/ValidationMessages.propertiesin classpath. Now how can I make this properties file loaded in every page?