springboot頁面國際化配置指南

前言

前一段時間做瞭一個項目,需要解決中文、繁體、英文的國際化問題,所以本文將詳細介紹springboot頁面國際化配置的過程

方法如下

1.引入依賴pom.xml

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

2.導入網頁資源,這裡給大傢推薦一個我自己在使用的頁面資源,SB ADMIN-2

html頁面放在templates目錄下,這是thymeleaf默認的解析目錄,其他的樣式文件放在static目錄下

3.接管spring Mvc,自定義url訪問路徑,可做可不做

建一個config目錄,在這裡建一個myWebMvcConfig

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class myWebMvcConfig implements WebMvcConfigurer {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {

        registry.addViewController("/wq").setViewName("register");//localhost:8080/wq
        registry.addViewController("/").setViewName("register");//localhpst:8080/
        registry.addViewController("/register.html").setViewName("register");
        //localhost:8080/register.html
    }
}

路徑可以設置多個,這樣隻要是這三個url,spring 都會訪問register.html

還有一種方式也能實現

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class demoController {
    @RequestMapping({"/","/wq"})
    public String test(){
        return "register";
    }
}

4.國際化配置文件:en_US英文,zh_CN中文

點擊左上角加號,便可以添加配置的屬性,隻要在右邊填寫相應的中英文即可

5. 配置文件已經寫好,如何在我們的頁面中使用呢?thyme leaf的作用又來瞭

首先在你的網頁添加這樣的頭部

<html lang="en" xmlns:th="http://www.thymeleaf.org">

在所有的html屬性前加**th:**就被thymeleaf接管瞭,根據thymeleaf 語法,獲取國際化值使用**#{}**,本地值用**${}**,url用**@{}**

   <a  th:href="@{/register.html(l='zh_CN')}" rel="external nofollow"  >中文 </a>
  <a  th:href="@{/register.html(l='en_US')}" rel="external nofollow" >English </a>

6. 頁面和配置文件都準備好瞭,怎樣實現跳轉呢?

 在WebMvcAutoConfiguration.class中

              @Bean
             @ConditionalOnMissingBean(
                 name = {"localeResolver"}
             )
             public LocaleResolver localeResolver() {
                 if (this.webProperties.getLocaleResolver() == org.springframework.boot.autoconfigure.web.WebProperties.LocaleResolver.FIXED) {
                     return new FixedLocaleResolver(this.webProperties.getLocale());
                 } else {
                     AcceptHeaderLocaleResolver localeResolver = new AcceptHeaderLocaleResolver();
                     localeResolver.setDefaultLocale(this.webProperties.getLocale());
                     return localeResolver;
                 }
             }

我們再找到AcceptHeaderLocaleResolver.class,發現它實現瞭LocaleResolver 

     public class AcceptHeaderLocaleResolver implements LocaleResolver {
         private final List<Locale> supportedLocales = new ArrayList(4);
         @Nullable
         private Locale defaultLocale;

那我們就編寫自己的LocaleResolver 

     public class myLocaleResolver implements LocaleResolver {
         @Override
         public Locale resolveLocale(HttpServletRequest request) {
     
             String mylocale=request.getParameter("l");
             Locale locale=Locale.getDefault();
             if(!StringUtils.isEmpty(mylocale)){
                 String[] split=mylocale.split("_");
                 locale=new Locale(split[0],split[1]);
             }
              System.out.println("debug====>"+mylocale);
             return locale;
         }
     
         @Override
         public void setLocale(HttpServletRequest request, HttpServletResponse response, Locale locale) {
     
         }
     }

然後在spring配置中註入myLocaleResolver

     @Bean
     public LocaleResolver localeResolver(){
         return new myLocaleResolver();
     
     }

 **註意:方法名必須是localeResolver**,**因為源碼中名字為localeResolver的bean**

7. 最後我們來測試一下

而且控制臺輸出也沒問題

總結

到此這篇關於springboot頁面國際化配置的文章就介紹到這瞭,更多相關springboot頁面國際化內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: