国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

史上最佳springboot Locale 國(guó)際化方案

瀏覽:172日期:2023-02-18 14:34:05
目錄1、國(guó)際化資源2、編寫配置3、用法詳解4、測(cè)試1、國(guó)際化資源

使用IDEA創(chuàng)建資源組

史上最佳springboot Locale 國(guó)際化方案史上最佳springboot Locale 國(guó)際化方案史上最佳springboot Locale 國(guó)際化方案史上最佳springboot Locale 國(guó)際化方案

2、編寫配置

application.yml 增加國(guó)際化目錄配置

史上最佳springboot Locale 國(guó)際化方案

增加配置類 從請(qǐng)求頭獲取多語(yǔ)言關(guān)鍵字

/** * 國(guó)際化配置 * * @author Lion Li */@Configurationpublic class I18nConfig {@Beanpublic LocaleResolver localeResolver() {return new I18nLocaleResolver();}/** * 獲取請(qǐng)求頭國(guó)際化信息 */static class I18nLocaleResolver implements LocaleResolver {@NotNull@Overridepublic Locale resolveLocale(HttpServletRequest httpServletRequest) {String language = httpServletRequest.getHeader('content-language');Locale locale = Locale.getDefault();if (StrUtil.isNotBlank(language)) {String[] split = language.split('_');locale = new Locale(split[0], split[1]);}return locale;}@Overridepublic void setLocale(@NotNull HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Locale locale) {}}}3、用法詳解

在 Header 請(qǐng)求頭 增加上下文語(yǔ)言參數(shù) content-language參數(shù)需與國(guó)際化配置文件后綴對(duì)應(yīng)如 zh_CN en_US 等

史上最佳springboot Locale 國(guó)際化方案

4、測(cè)試

編寫測(cè)試類

/** * 測(cè)試國(guó)際化 * * @author Lion Li */@RestController@RequestMapping('/demo/i18n')public class TestI18nController {@Autowiredprivate MessageSource messageSource;/** * 通過(guò)code獲取國(guó)際化內(nèi)容 * code為 messages.properties 中的 key * * 測(cè)試使用 user.register.success */@GetMapping()public String get(String code) {return messageSource.getMessage(code, new Object[]{}, LocaleContextHolder.getLocale());}}

測(cè)試接口

史上最佳springboot Locale 國(guó)際化方案史上最佳springboot Locale 國(guó)際化方案

到此這篇關(guān)于springboot Locale 國(guó)際化方案的文章就介紹到這了,更多相關(guān)springboot 國(guó)際化內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Spring
相關(guān)文章:
主站蜘蛛池模板: 米易县| 于都县| 通化县| 罗田县| 吉木乃县| 龙游县| 贵州省| 柳州市| 三门峡市| 浮梁县| 砀山县| 江孜县| 永昌县| 海兴县| 桑植县| 阳新县| 关岭| 克拉玛依市| 精河县| 五家渠市| 青冈县| 广河县| 西丰县| 陆川县| 财经| 云林县| 临猗县| 南靖县| 新营市| 黔江区| 成都市| 明星| 清流县| 睢宁县| 涿州市| 修文县| 南部县| 舒兰市| 万州区| 德庆县| 衡阳市|