springboot 学习 -- 整合 thymeleaf 模板和 i18n 国际化

本贴最后更新于 1926 天前,其中的信息可能已经渤澥桑田

一,整合 thymeleaf 模板

在 pom 文件中引入 maven 依赖

thymeleafpng

模板配置

spring:
  messages:
    basename: i18n/message
  thymeleaf:
    mode: HTML
    encoding: utf-8
    cache: false

二,整合 i18n 国际化

i18n 配置类

package com.miya.i18n.booti18n.config;

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.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.i18n.LocaleChangeInterceptor;
import org.springframework.web.servlet.i18n.SessionLocaleResolver;

import java.util.Locale;

/**
 * 资源文件配置加载 * * @author ruoyi
 */@Configuration
public class I18nConfig implements WebMvcConfigurer {
    @Bean
  public LocaleResolver localeResolver() {
        SessionLocaleResolver slr = new SessionLocaleResolver();
  // 默认语言
  slr.setDefaultLocale(Locale.SIMPLIFIED_CHINESE);
 return slr;
  }

    @Bean
  public LocaleChangeInterceptor localeChangeInterceptor() {
        LocaleChangeInterceptor lci = new LocaleChangeInterceptor();
  // 参数名
  lci.setParamName("lang");
 return lci;
  }

    @Override
  public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(localeChangeInterceptor());
  }
}

2. 多语言配置文件

在 resource 目录下新建 i18 努力,新建 3 个配置文件 message.properties, message_en_US.properties, message_zh_CN.properties

GitHub 源码地址

https://github.com/MiyaJ/booti18n

  • Spring

    Spring 是一个开源框架,是于 2003 年兴起的一个轻量级的 Java 开发框架,由 Rod Johnson 在其著作《Expert One-On-One J2EE Development and Design》中阐述的部分理念和原型衍生而来。它是为了解决企业应用开发的复杂性而创建的。框架的主要优势之一就是其分层架构,分层架构允许使用者选择使用哪一个组件,同时为 JavaEE 应用程序开发提供集成的框架。

    941 引用 • 1458 回帖 • 150 关注

相关帖子

欢迎来到这里!

我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。

注册 关于
请输入回帖内容 ...