SpringBoot后台国际化
新建国际化资源文件
在resources下面新建了三个文件
messages.properties是必须的,内容可以为空,但是必须有这个文件
messages_zh_CN.properties和messages_en_US.properties分别是中文和英文资源
配置国际化
如果是从请求头中获取Local Message
1 | import org.springframework.context.annotation.Bean; |
如果是从HTTP请求中参数Local Message
1 | import org.springframework.context.annotation.Bean; |
编写工具类获取Local Message
1 | import org.springframework.beans.factory.annotation.Autowired; |
使用
在REST API中使用
1 |
|
测试
如果出现中文乱码的情况
在Settings中将编码格式改成UTF-8
然后将乱码的文字重新编写一下就好了