Hibernate validator Dynamic return internationalization tips

Source: Internet
Author: User

I. Description

The following method implements a validator that reads a specified internationalized file.

1. Mymessages is a custom internationalized file, placed in the root directory of SRC

For example, there are mymessages_en_us.properties, mymessages_zh_cn.properties

2. Locale for the type of language you want to return

For example, the incoming new Locale ("en", "US") corresponds to the definition of the return mymessages_en_us;

Second, the validator code

     Public Static Validator getvalidatorbylocale (locale locale) {        locale.setdefault (locale);         = Validation.bydefaultprovider (). Configure ()                . Messageinterpolator (                        New Resourcebundlemessageinterpolator (new platformresourcebundlelocator ("Mymessages"))                . Buildvalidatorfactory (). Getvalidator ();         return validator;    }

Hibernate validator Dynamic return internationalization tips

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.