admin管理员组

文章数量:1530020

错误

项目在编译的时候,报错:
Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!

配置编码格式为UTF-8

在项目pom.xml中增加如下配置:

<properties>
    <!--编译编码-->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

再次编译运行,不再报错!

本文标签: 错误UTFEncodingPlatformresources