springboot 后台国际化配置

类如图:

springboot 后台国际化配置_第1张图片

yml配置如图:

资源路径配置如图。

springboot 后台国际化配置_第2张图片

调用方式

 Locale locale = LocaleContextHolder.getLocale();

String message = messageSource.getMessage("hello", null, locale);//获取转换后的字符。需要在messages.properties,messages_enUS.properties,messages.properties 中配置。

切换方式,http 访问后台携带lang(配置类中设置的值)http://localhost:62119/il8n?lang=en_US,http://localhost:62119/il8n?lang=zh_CN

你可能感兴趣的:(JAVA)