SpringBoot资源国际化
Posted gaoshengchao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot资源国际化相关的知识,希望对你有一定的参考价值。
Springboot根据浏览器实现网站资源国际化
1.创建资源化文件
- resource目录下创建messages目录
- 创建messages_en_US.properties、messages_zh_CN.properties文件。分别是英文、中文资源。
- messages.properties文件为默认文件。
- messages_en_US.properties写入内容:welcome = welcome to login in soa-watch systerm(english)
- messages_zh_CN.properties写入内容:welcome=欢迎访问soa-watch系统(CH)
- messages.properties写入内容:welcome=欢迎访问soa-watch系统(Default)
2.配置application.properties
spring.messages.encoding=UTF-8
spring.messages.basename=/messages/messages
3.jsp页面中使用标签
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<html>
<head>
<title>i18n</title>
</head>
<body>
<spring:message code="welcome"></spring:message>
</body>
</html>
4.修改浏览器的语言环境
- 浏览器地址栏中输入
about:config
- 修改intl.accept_languages,查看结果
- 以上为火狐浏览器
以上是关于SpringBoot资源国际化的主要内容,如果未能解决你的问题,请参考以下文章