- Log4j2的配置文件编码
charset="UTF-8"
修改为:charset="GBK"
<Console name="Console" target="SYSTEM_OUT"> <PatternLayout charset="GBK" pattern="****"/> </Console>
本地Tomcat的配置中,VM options添加参数:-Dfile.encoding=UTF-8
打开idea安装目录: <IDEA_HOME>/bin中的idea64.exe.vmoptions
,在末尾添加-Dfile.encoding=UTF-8
重启Idea即可