springboot国际化

1.springboot默认就支持国际化的,而且不需要你过多的做什么配置,只需要在resources/下定义国际化配置文件即可,注意名称必须以messages开发。

2.配置参考:https://www.cnblogs.com/iceb/p/9225678.html

3.代码中获取国际化

//需要注意的是messageSource是org.springframework.context.MessageSource 不要倒错包
@Autowired
private MessageSource messageSource;

那么怎么使用了,在使用前我们需要先知道一个知识点,如何得到当前请求的Locale

那么怎么获取呢,有两种获取方式:

第一种方式是:

Locale locale = LocaleContextHolder.getLocale();

第二种方式是:

Locale locale= RequestContextUtils.getLocale(request);

完整代码如下:

String msg = messageSource.getMessage("welcome",null,locale);

 

你可能感兴趣的:(javaweb,springbootcloud)