91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中怎么通過自定義LocaleResolver實現切換語言功能

發布時間:2021-08-06 17:09:30 來源:億速云 閱讀:338 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關springboot中怎么通過自定義LocaleResolver實現切換語言功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1、在pom中引入thymeleaf模板引擎

//引入thymeleaf<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>

我這里是以登錄界面為例

2、在resources下面創建一個i18n的文件夾,然后創建一個login.properties

login.propertie:默認顯示的語言login.button=登陸login.password=密碼login.remember=記住我login.tip=請登陸login.username=用戶名login_en_US.properties:美國(英語)login.button=Sign Inlogin.password=PassWordlogin.remember=Remember Melogin.tip=Please sign inlogin.username=UserNamelogin_zh_CN.properties:中文login.button=登陸login.password=密碼login.remember=記住我login.tip=請登陸login.username=用戶名

3、在登錄頁面通過thymeleaf標簽引入國際化

注意:input標簽需要用[[]]來進行取值

4、運行項目,將瀏覽器語言設置為英語(美國)或者中文,我們的頁面就會切換語言。

但是這里必須要手動設置瀏覽器語言才可以實現中英文切換,最終的效果是點擊頁面上中文和English來進行切換語言,下面來實現這個功能:

1、SpringBoot為我們自動配置了LocaleResolver組件,實現國際化我們需要自定義LocaleResolver才能起作用,代碼如下:

** * Describe: 國際化 * Copyright: ITfxsen * Date: 2019/10/17 * Time: 16:18 * @author fu.qiang * @version 1.0 */@Configurationpublic class MyLocaleResolver implements LocaleResolver {  @Override  public Locale resolveLocale(HttpServletRequest httpServletRequest) {    String l = httpServletRequest.getParameter("l");    if (StringUtils.isEmpty(l)){      Locale locale = Locale.getDefault();      return locale;    }else {      String[] split = l.split("_");      return new Locale(split[0],split[1]);    }  }

2、再將自定義LocaleResolver注入到spring容器中:

/**   * Describe: 注入自定義的LocaleResolver   * @param   * @return   * @Time: 2019/10/18 9:38   * @autho: fu.qiang   * @version 1.0   */  @Bean  public LocaleResolver localeResolver(){    return new MyLocaleResolver();  }

3、在頁面上使用Thymeleaf模板引擎,對中英文切換的a標簽的href屬性覆蓋:

<a class="btn btn-sm" th:href="@{/login(l='zh_CN')}" rel="external nofollow" >中文</a><a class="btn btn-sm"th:href="@{/login(l='en_US')}" rel="external nofollow" > English</a>

關于springboot中怎么通過自定義LocaleResolver實現切換語言功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌吉市| 百色市| 富源县| 瓦房店市| 鹿邑县| 恩施市| 丽江市| 井冈山市| 四子王旗| 惠水县| 胶州市| 股票| 南康市| 静海县| 定远县| 临澧县| 白银市| 潜山县| 梅州市| 华坪县| 五台县| 张家港市| 阳朔县| 新化县| 平武县| 合川市| 罗江县| 海宁市| 花莲县| 康乐县| 德格县| 瑞昌市| 读书| 措美县| 遂平县| 通州区| 桂林市| 鲜城| 栖霞市| 巩留县| 平和县|