解决 springboot 读取配置文件中文乱码问题

在提取@value的类上添加

@PropertySource(value = "classpath:application-dev.properties", ignoreResourceNotFound = true,encoding = "UTF-8" )

 

 

你可能感兴趣的:(springboot,配置)