springboot中读取yml文件的字符集编码格式
时间: 2023-04-19 09:00:15 浏览: 287
Springboot中获取yml配置文件中键值对Map的一种实现方法
Spring Boot中默认使用UTF-8编码格式读取yml文件。如果需要使用其他编码格式,可以在application.yml文件中配置:
```yaml
spring:
profiles:
active: dev
http:
encoding:
charset: GBK
enabled: true
```
这里的charset可以设置为其他编码格式,如GBK、ISO-8859-1等。需要注意的是,如果yml文件中存在中文字符,一定要保证编码格式一致,否则可能会出现乱码问题。
阅读全文