Windows下IDEA run能运行springboot,java -jar maven打的包拉有中文的nacos配置,报org.yaml.snakeyaml.error.YAMLException错误解决

该问题主要是因为maven打包时没有使用utf-8编码格式,解决方案如下:

 

 在springboot打包插件中增加打包编码配置:

                <configuration>
                    <!--解决系统编码非UTF-8情况下打包编码问题-->
                    <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
                </configuration>

 

posted @ 2022-03-31 14:29  剑握在手  阅读(424)  评论(0编辑  收藏  举报
返回顶部↑