SpringBoot下国际化配置

简介: SpingBoot实现国际化配置步骤

SpringBoot下使用MessageSource实现国际化配置

1.1在ResourceBundle下创建国际化配置文件

(1)在【resources】目录下创建【i18n】目录(名称随意起),在目录上【右键】-->【new】-->【Resource Bundle】-->【起名message】(起名随意)。

image.png(2)在message下创建国际化配置文件

messages.properties (默认的语言配置文件,当找不到其他语言的配置的时候,使用该文件进行展示)。

i18n.user.name=孙大圣

messages_zh_CN.properties(中文)

i18n.user.name=孙行者

messages_en_US.properties(英文)

i18n.user.name=SevenSun

1.2 yml配置文件中配置刚才创建的国际化配置文件

spring:
  messages:
    # 国际化资源文件路径 eg:"messages,config.i18n.messages"
    basename: i18n/messages
    encoding: UTF-8

image.png

*basename: i18n/messages //这里即为配置文件路径,如果创建时候改名了,这里记得要一致!!

1.3 配置拦截器

packagecom.tab343.myspringboot.internationalization;
importorg.springframework.context.annotation.Bean;
importorg.springframework.context.annotation.Configuration;
importorg.springframework.web.servlet.LocaleResolver;
importorg.springframework.web.servlet.config.annotation.InterceptorRegistry;
importorg.springframework.web.servlet.config.annotation.WebMvcConfigurer;
importorg.springframework.web.servlet.i18n.LocaleChangeInterceptor;
importorg.springframework.web.servlet.i18n.SessionLocaleResolver;
importjava.util.Locale;
@ConfigurationpublicclassI18nConfigimplementsWebMvcConfigurer{
//两种方式区一中即可@BeanpublicLocaleResolverlocaleResolver()
    {
//(1)Cookie方式/* CookieLocaleResolver localeResolver = new CookieLocaleResolver();localeResolver.setCookieName("localeCookie");//设置默认区域localeResolver.setDefaultLocale(Locale.ENGLISH);localeResolver.setCookieMaxAge(3600);//设置cookie有效期.return localeResolver;*///(2)Session方式SessionLocaleResolverslr=newSessionLocaleResolver();
// 默认语言slr.setDefaultLocale(Locale.SIMPLIFIED_CHINESE);
returnslr;
    }
@BeanpublicLocaleChangeInterceptorlocaleChangeInterceptor()
    {
LocaleChangeInterceptorlci=newLocaleChangeInterceptor();
// 参数名实现国际化效果lci.setParamName("lang");
returnlci;
    }
@OverridepublicvoidaddInterceptors(InterceptorRegistryregistry)
    {
registry.addInterceptor(localeChangeInterceptor());
    }
}

1.4 编写国际化测试Controller

packagecom.tab343.myspringboot.internationalization;
importorg.springframework.beans.factory.annotation.Autowired;
importorg.springframework.context.MessageSource;
importorg.springframework.context.i18n.LocaleContextHolder;
importorg.springframework.web.bind.annotation.GetMapping;
importorg.springframework.web.bind.annotation.RequestMapping;
importorg.springframework.web.bind.annotation.RestController;
importjava.util.Locale;
/*** @Description : 国际化Controller*/@RestController@RequestMapping("/i18n")
publicclassI18nController {
@AutowiredprivateMessageSourcemessageSource;
@GetMapping("/hello")
publicStringhello(){
Localelocale=LocaleContextHolder.getLocale();
returnmessageSource.getMessage("i18n.user.name", null, locale);
    }
}

这里通过MessageSource获取配置文件中key为"i18n.user.name"的值

1.5使用PostMan访问

(1)英文

image.png

(2)中文

image.png

目录
相关文章
|
11天前
|
Java 开发者 微服务
手写模拟Spring Boot自动配置功能
【11月更文挑战第19天】随着微服务架构的兴起,Spring Boot作为一种快速开发框架,因其简化了Spring应用的初始搭建和开发过程,受到了广大开发者的青睐。自动配置作为Spring Boot的核心特性之一,大大减少了手动配置的工作量,提高了开发效率。
31 0
|
1月前
|
Java API 数据库
构建RESTful API已经成为现代Web开发的标准做法之一。Spring Boot框架因其简洁的配置、快速的启动特性及丰富的功能集而备受开发者青睐。
【10月更文挑战第11天】本文介绍如何使用Spring Boot构建在线图书管理系统的RESTful API。通过创建Spring Boot项目,定义`Book`实体类、`BookRepository`接口和`BookService`服务类,最后实现`BookController`控制器来处理HTTP请求,展示了从基础环境搭建到API测试的完整过程。
48 4
|
1月前
|
Java API 数据库
Spring Boot框架因其简洁的配置、快速的启动特性及丰富的功能集而备受开发者青睐
本文通过在线图书管理系统案例,详细介绍如何使用Spring Boot构建RESTful API。从项目基础环境搭建、实体类与数据访问层定义,到业务逻辑实现和控制器编写,逐步展示了Spring Boot的简洁配置和强大功能。最后,通过Postman测试API,并介绍了如何添加安全性和异常处理,确保API的稳定性和安全性。
38 0
|
16天前
|
缓存 IDE Java
SpringBoot入门(7)- 配置热部署devtools工具
SpringBoot入门(7)- 配置热部署devtools工具
27 2
 SpringBoot入门(7)- 配置热部署devtools工具
|
6天前
|
存储 前端开发 JavaScript
springboot中路径默认配置与重定向/转发所存在的域对象
Spring Boot 提供了简便的路径默认配置和强大的重定向/转发机制,通过合理使用这些功能,可以实现灵活的请求处理和数据传递。理解并掌握不同域对象的生命周期和使用场景,是构建高效、健壮 Web 应用的关键。通过上述详细介绍和示例,相信读者能够更好地应用这些知识,优化自己的 Spring Boot 应用。
17 3
|
14天前
|
Java 数据库连接
SpringBoot配置多数据源实战
第四届光学与机器视觉国际学术会议(ICOMV 2025) 2025 4th International Conference on Optics and Machine Vision
44 8
|
12天前
|
Java 数据库连接 数据库
springboot启动配置文件-bootstrap.yml常用基本配置
以上是一些常用的基本配置项,在实际应用中可能会根据需求有所变化。通过合理配置 `bootstrap.yml`文件,可以确保应用程序在启动阶段加载正确的配置,并顺利启动运行。
24 2
|
23天前
|
Java Spring 容器
SpringBoot读取配置文件的6种方式,包括:通过Environment、@PropertySource、@ConfigurationProperties、@Value读取配置信息
SpringBoot读取配置文件的6种方式,包括:通过Environment、@PropertySource、@ConfigurationProperties、@Value读取配置信息
46 3
|
23天前
|
前端开发 Java Spring
SpringBoot项目thymeleaf页面支持词条国际化切换
SpringBoot项目thymeleaf页面支持词条国际化切换
52 2
|
1月前
|
druid Java Maven
下一篇
无影云桌面