20220516 Core Features - 5. Internationalization
前言
Spring Boot 支持本地化消息,因此您的应用程序可以迎合不同语言偏好的用户。默认情况下,Spring Boot 在类路径的根目录下查找 资源包(resource bundle)的存在。
当配置的 resource bundle 的默认属性文件可用时(默认
messages.properties
),将应用自动配置。如果您的 resource bundle 仅包含特定于语言的属性文件,则需要添加默认文件。如果找不到与任何配置的基本名称匹配的属性文件,则不会自动配置MessageSource
可以使用 spring.messages
名称空间来配置 resource bundle 的基本名称以及其他几个属性,如以下示例所示:
spring.messages.basename=messages,config.i18n.messages
spring.messages.fallback-to-system-locale=false
spring.messages.basename
支持以逗号分隔的位置列表,可以是包限定符,也可以是从类路径根目录解析的资源。
有关更多支持的选项,请参阅 MessageSourceProperties
参考源码:org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration