How do I configure SpringMVC's annotation messages encoding? For example, I annotated a field of the form to be validated like this:
@NotEmpty(message = "ъ")
But when the error occurs, it is encoded in a wrong charset. Encoding filter in web.xml is enabled and *.java files are UTF-8. Tomcat's Connector in server.xml is configured to deal with UTF-8.