springboot读取配置文件解决乱码问题

Posted chunyun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot读取配置文件解决乱码问题相关的知识,希望对你有一定的参考价值。

首先在application.properties里面写好要读取的配置文件:

name=小郭
age=23
sex=男

然后继续加入以下代码:

banner.charset=UTF-8
server.tomcat.uri-encoding=UTF-8
spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true
spring.http.encoding.force=true
spring.messages.encoding=UTF-8

最后一次点击 File -> Settings -> Editor -> File Encodings
Properties Files (*.properties)下的Default encoding for properties files设置为UTF-8,将Transparent native-to-ascii conversion前的勾选上
这样就OK了!

















以上是关于springboot读取配置文件解决乱码问题的主要内容,如果未能解决你的问题,请参考以下文章

Springboot项目部署在Linux服务器上读取配置文件中文乱码问题解决

springboot-项目获取resources下文件的方法解决乱码

解决SpringBoot返回中文乱码问题方法汇总

@Value读取properties中文乱码解决方案

springboot读取自定义配置文件及乱码问题

spring MVC接收中文乱码问题