码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot资源国际化

时间:2016-11-01 13:45:20      阅读:496      评论:0      收藏:0      [点我收藏+]

标签:标签   conf   mon   lib   查看   att   访问   tag   sys   

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

标签:标签   conf   mon   lib   查看   att   访问   tag   sys   

原文地址:http://www.cnblogs.com/sagech/p/6018844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!