SpringBoot中的国际化

本文介绍了在SpringBoot中实现国际化的步骤,包括编写国际化配置文件,指定application.yml中的配置,创建login.html并实现语言切换功能,以及登录验证时显示错误信息的国际化处理。在开发过程中,需要注意Thymeleaf模板引擎的缓存设置,确保模板更新实时生效。
摘要由CSDN通过智能技术生成

 

目录

1、编写国际化配置文件

2、在application.yml中指定读取的国际化配置文件:

3、login.html

4、点击中文或者English切换语言

5、登录验证


1、编写国际化配置文件

国际化配置文件默认文件名称为:messages.properties,若是自己起的其他名称,则需要在application.yml中指定文件:

如:在resources目录下创建i18n目录,在i18n目录下面创建国际化配置文件,login.properties是默认国际化配置文件,login_en_US.propertoes 英文,login_zh_CN.properties中文,创建好之后IDEA会自动识别这些配置文件是国际化配置文件。

随便打开一个文件,点击下面的Resource Bundle可以添加字段和值,一次可以直接更改三个配置文件。

2、在application.yml中指定读取的国际化配置文件:

#国际化指定文件
spring:
  messages:
    basename: i18n.login

##message.propertiesi是默认的国际化配置文件,不需要特别指定路径

3、login.html

<!DOCTYPE html>
<html lang="en"  xmlns:th="http://www.thymeleaf.org">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
	<meta name="description" content="">
	<meta name="author" content="">
	<title>登陆页面</title>
	<!-- Bootstrap core CSS -->
	<link href="asserts/css/bootstrap.min.css" th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
	<!-- Custom styles for this template -->
	<link href="asserts/css/signin.css" 
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值