博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springMVC国际化
阅读量:5903 次
发布时间:2019-06-19

本文共 765 字,大约阅读时间需要 2 分钟。

hot3.png

@RequestMapping(value="${adminPath}/switchlanguage",method = RequestMethod.GET)public String changeLanguage(HttpServletRequest request,HttpServletResponse response, @RequestParam String currentlang, Model model) {   CookieLocaleResolver localeResolver = (CookieLocaleResolver) RequestContextUtils.getLocaleResolver(request);   if ("zh_CN".equals(currentlang)) {      localeResolver.setLocale(request, response, new Locale("en", "US"));   } else{      localeResolver.setLocale(request, response, new Locale("zh", "CN"));   }   return "/view/sysLogin";}

<a style="color: #1E90FF"

                href="${pageContext.request.contextPath}/admin/switchlanguage?currentlang=${currentLocale}"><fmt:message
                    key="btn_switch_language" /></a>

 

转载于:https://my.oschina.net/u/2351011/blog/1858267

你可能感兴趣的文章
template.helper 多参数
查看>>
Android 四大组件之一(Activity)
查看>>
扫描(一)
查看>>
PIE SDK矢量数据的读取
查看>>
Centos7安装rabbitmq server 3.6.0
查看>>
iostat命令学习
查看>>
SQL 三种分页方式
查看>>
查看linux是ubuntu还是centos
查看>>
html video的url更新,自动清缓存
查看>>
IOS Xib使用——为控制器添加Xib文件
查看>>
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙步骤
查看>>
【11】ajax请求后台接口数据与返回值处理js写法
查看>>
Python菜鸟之路:Jquery Ajax的使用
查看>>
LeetCode算法题-Maximum Depth of Binary Tree
查看>>
Cox 教学视频5
查看>>
Jenkins持续集成学习-搭建jenkins问题汇总
查看>>
使用ffmpeg实现对h264视频解码 -- (实现了一个易于使用的c++封装库)
查看>>
flink watermark介绍
查看>>
[Flink原理介绍第四篇】:Flink的Checkpoint和Savepoint介绍
查看>>
Android Xutils 框架
查看>>