SpringBoot 切换国际化
git:https://github.com/xiaozhuanfeng/demoProj
代码结构:
spring.messages.basename=i18n/sprMesgs
说明:默认情况下,国际化资源文件的基础名为messages,且存放在classpath根路径下,即messages.properties、messages_zh_CN.properties、messages_en_US.properties等等,这样就无需在配置文件中设置spring.messages.basename=...了,但是如果基础名不为messages或者不在classpath根路径下,则需要手动添加spring.messages.basename=文件名.自定义的基础名,如果有多个就用逗号分隔。例如:spring.messages.basename=i18n/sprMesgs。
本例就是不用messages.XXX开头,上述具体可参照源码文件:MessageSourceAutoConfiguration.class。
Spring 采用的默认区域解析器是AcceptHeaderLocaleResolver。它通过检验HTTP请求的头部信息accept-language来解析区域。这个头部是由用户的wb浏览器底层根据底层操作系统的区域设置进行设定的。请注意,这个区域解析器无法改变用户的区域,因为它无法修改用户操作系统的区域设置。
//代码中获取国际化信息
Locale locale = LocaleContextHolder.getLocale();
String msg = messageSource.getMessage("welcome.backhome", null,locale);
System.out.println("获取国际化信息"+msg);
package com.example.demo.config; import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.i18n.SessionLocaleResolver; import java.util.Locale; @Configuration
public class MvcConfig {
private final Logger log = LoggerFactory.getLogger(getClass());
@Bean
public LocaleResolver localeResolver() {
log.info("SessionLocaleResolver is start.... ");
//会话区域解析器也就是说,你设置完只针对当前的会话有效,session失效,还原为默认状态
SessionLocaleResolver srl = new SessionLocaleResolver();
//设置默认区域
srl.setDefaultLocale(Locale.CHINA);
return srl;
}
}
html页面:
<div>
<span>3、文字国际化表达式</span><br/>
<form action="/changeLanguage2" method="get">
<!-- <span th:text="'语言 '+${lang}"></span><br/>--> <select name="lang">
<option value=""></option>
<option th:selected="${lang=='zh'}" value="zh">中文</option>
<option th:selected="${lang=='en'}" value="en">English</option>
</select> <button>切换语言</button>
</form> <br/>
<span th:text="#{welcome.backhome}"></span><br/>
</div>
Controller:
package com.example.demo.controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.i18n.SessionLocaleResolver;
import org.springframework.web.servlet.support.RequestContextUtils; import javax.servlet.http.HttpServletRequest;
import java.util.Locale;
@Controller
public class I18nController { @RequestMapping(value = "changeLanguage1")
public String changeLan1(HttpServletRequest req, String lang) { if ("en".equals(lang)) {
req.getSession().setAttribute(SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME, Locale.US);
} else {
req.getSession().setAttribute(SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME, Locale.CHINA);
}
return "redirect:/demo/example1";
} @RequestMapping(value = "changeLanguage2")
public String changeLan2(HttpServletRequest req, String lang) {
LocaleResolver localeResolver = RequestContextUtils.getLocaleResolver(req);
if ("en".equals(lang)) {
localeResolver.setLocale(req, null, Locale.US);
} else {
localeResolver.setLocale(req, null, Locale.CHINA);
}
return "redirect:/demo/example1";
}
}
跳转页面Controller:
package com.example.demo.controller; import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest;
import java.util.Locale;
import java.util.Map; @Controller
@RequestMapping(value = "/demo")
public class DemoController {
private final Logger log = LoggerFactory.getLogger(getClass()); @RequestMapping("/example1")
private String example1(HttpServletRequest request, Map<String, Object> map) { //.....省略
//1、代码中获取国际化信息
Locale locale = LocaleContextHolder.getLocale();
//2、从Session中获取语言环境
//locale = (Locale)req.getSession().getAttribute(SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME);
//System.out.println("当前语言环境:"+locale.getLanguage());
map.put("lang",locale.getLanguage()); return "web_demo1";
}
}
测试:
SpringBoot 切换国际化的更多相关文章
- SpringBoot 国际化配置,SpringBoot Locale 国际化
SpringBoot 国际化配置,SpringBoot Locale 国际化 ================================ ©Copyright 蕃薯耀 2018年3月27日 ht ...
- SpringBoot切换Tomcat容器,SpringBoot使用Jetty容器
SpringBoot切换Tomcat容器, SpringBoot修改为Jetty容器, SpringBoot使用undertow容器, SpringBoot使用Jetty容器 ============ ...
- 配置和修改springboot默认国际化文件
SpringBoot默认国际化文件为:classpath:message.properties,如果放在其它文件夹中,则需要在application.properties配置属性spring.mess ...
- SpringBoot的国际化使用
在项目中,很多时候需要国际化的支持,这篇文章要介绍一下springboot项目中国际化的使用. 在这个项目中前端页面使用的thymeleaf,另外加入了nekohtml去掉html严格校验,如果不了解 ...
- SpringBoot整合国际化功能
(1).编写国际化配置文件 在resources下新建i18n文件夹,并新建以下文件 ①index.properties username=username ②index_en_US.proper ...
- SpringBoot日记——国际化篇
听起来高大上的国际化,起始就是在利用浏览器语言,或者页面中的中英文切换,将页面的文字在其他语言和中文进行切换,比如: 我们想让这个功能实现,点击中文,页面就是中文的,点击英文就是英文的. 国际化配置 ...
- SpringBoot资源国际化
Springboot根据浏览器实现网站资源国际化 根据浏览器地区主动选择资源 1.创建资源化文件 resource目录下创建messages目录 创建messages_en_US.properties ...
- SpringBoot整合国际化I18n
本文主要实现的功能: 从文件夹中直接加载多个国际化文件 后台设置前端页面显示国际化信息的文件 实现 国际化项目初始化,简单看下项目的目录和文件 在resource下创建国际化文件 messages.p ...
- SpringBoot配置国际化
1).国际化 1).编写国际化配置文件: 2).使用ResourceBundleMessageSource管理国际化资源文件 3).在页面使用fmt:message取出国际化内容 步骤: 1).编写国 ...
随机推荐
- offsetWidth clientWidth scrollWidth 的区别
了解 offsetWidth clientWidth scrollWidth 的区别 最近需要清除区分开元素的width,height及相应的坐标等,当前这篇用来区分offsetWidth clien ...
- tabcontrol动态生成选项卡,并且在选项卡中添加窗体
http://blog.csdn.net/zx13525079024/article/details/6084733 今天在论坛上看到有人问到,如果在点击TRVEVIEW时动态生成tabcontrol ...
- webpack配置--传统多页面项目
//依赖包--package.json文件 { "name": "webemeet", "version": "1.0.0&quo ...
- 关于javaweb 项目 ssm框架 启动tomcat服务器同时启动一个socket服务
1.创建监听类 import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax. ...
- Utorrent死机恢复种子下载
死机保存Utorrent种子不被删除方法: 保了200多个种,死机了重启就没有什么下载的种子的记录,要一个个导入实在奔溃. 从被删除的resume.dat恢复很有压力. 简单的方法: 在还没有死机前, ...
- 远程连接mysql出现1130的错误
数据库权限不足 连接数据以后执行以下命令 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '您的数据库密码' WITH GRANT OP ...
- alex说:一切皆bytes
一.ASCII ASCII(American Standard Code for Information Interchange),是一种单字节的编码.计算机世界里一开始只有英文,而单字节可以表示25 ...
- linux c++下遍历文件
https://blog.csdn.net/u013617144/article/details/44807333
- python3-多重继承
继承是面向对象编程的一个重要的方式,因为通过继承,子类就可以扩展父类的功能. 回忆一下Animal类层次的设计,假设我们要实现以下4种动物: Dog - 狗狗: Bat - 蝙蝠: Parrot - ...
- Ubuntu 16.04 安装摄像头驱动usb_cam
!!需要在ROS平台上安装 ROS见 https://www.cnblogs.com/haijian/p/8782560.html cd ~/catkin_ws/src 下载usb_cam包 gi ...