前几天碰到使用@Value中文乱码的问题,英文字符则不会出现问题
原因:SpringBoot在加载properties配置文件时,使用的默认编码是:ISO_88599_1
解决方式:将properties改成yml就可以读取成功了
@Data
@Component
@PropertySource(value = "classpath:chinese.properties", encoding="UTF-8")
//指定读取配置的前缀
@ConfigurationProperties(prefix = "com.example.demo")
public class Properties {
private String name;
private Integer age;
private String address;
}
使用情况:添加默认配置的时候需要用到 使用的时候使用@Autowaired注入