在Spring Boot中,可以通过以下方式解决properties文件中文乱码的问题:
确保properties文件是以UTF-8编码保存的。
在启动类中添加以下代码,指定properties文件的编码格式为UTF-8:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
// 设置properties文件编码为UTF-8
System.setProperty("file.encoding", "UTF-8");
SpringApplication.run(Application.class, args);
}
}
在配置文件中,使用Unicode编码表示中文字符。例如,将中文字符"你好"表示为"\u4f60\u597d"。
my.property=\u4f60\u597d
如果使用的IDE是IntelliJ IDEA,可以在编辑properties文件时,将文件编码设置为UTF-8。在IDE的右下角可以看到当前文件的编码格式,点击后选择"UTF-8"。
如果以上方法无法解决乱码问题,可以尝试使用@PropertySource
注解指定properties文件的编码格式。例如:
@SpringBootApplication
@PropertySource(value = { "classpath:application.properties" }, encoding = "UTF-8")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
这样可以确保Spring Boot能正确地读取和解析properties文件中的中文字符。