首页 > 代码库 > SpringBoot资源国际化

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资源国际化