11.SpringBoot学习笔记

properties配置文件编码问题

Posted by Chen Xingxu on June 20, 2020

SpringBoot学习笔记(十一)–properties配置文件编码问题

application.properties

person.last-name=小明
person.age=18
person.birth=2020/6/6
person.boss=false
person.maps.k1=v1
person.maps.k2=14
person.lists=a,b,c
person.dog.name=小狗
person.dog.age=3

properties 配置文件在 idea 中默认为 utf-8 可能会乱码

解决方法:

更改配置后,记得查看 application.properties 文件,其中的中文会变成乱码,更正后重新运行测试,结果正常。