上次我碰到获取properties文件中的中文出现乱码问题。

springBoot使用@Value标签读取*.properties文件的中文乱码问题-LMLPHP

查了下资料,原来properties默认的字符编码格式为asci码,所以我们要对字符编码进行转换成UTF-8格式

原先代码:@PropertySource("classpath:fu.properties")

改后代码:@PropertySource(value="classpath:fu.properties",encoding="utf-8")

然后就不会出现@Value标签读取*.properties文件的中文乱码问题

springBoot使用@Value标签读取*.properties文件的中文乱码问题-LMLPHP

引用大牛链接http://www.cnblogs.com/huaxingtianxia/p/7278744.html

04-25 01:23