Can't get Hibernate Validator working with Spring MessageSource

后端 未结 5 692
北荒
北荒 2021-02-09 17:39

I\'m trying to get Hibernate Validator setup to use messages from a Spring MessageSource. I have the following setup in my messages-context.xml:

<         


        
5条回答
  •  北恋
    北恋 (楼主)
    2021-02-09 17:54

    Hibernate Validator is looking in a different place for the locale. Try this:

    LocaleContextHolder.setLocale(locale);

提交回复
热议问题