上次我碰到获取properties文件中的中文出现乱码问题。
查了下资料,原来properties默认的字符编码格式为asci码,所以我们要对字符编码进行转换成UTF-8格式
原先代码:@PropertySource("classpath:fu.properties")
改后代码:@PropertySource(value="classpath:fu.properties",encoding="utf-8")
然后就不会出现@Value标签读取*.properties文件的中文乱码问题
引用大牛链接http://www.cnblogs.com/huaxingtianxia/p/7278744.html
原文地址:https://www.cnblogs.com/shifu8005/p/9868567.html
时间: 2024-10-23 17:16:00