Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

导读:本篇文章讲解 Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

错误详情(springboot报错) :

        Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project springboot_04_mybatis: Input length = 1 -> [Help 1]Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

错误分析:

        配置springboot项目时,properties或yml文件中出现了中文(中文值或中文注解),而IDEA解析文件的默认方式不是UTF-8,文件中存在中文就会报错

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

解决方法 1(不推荐,我也不知道原理,其他博客中找到的) :

        在pom文件中加入

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.7</version>
    <dependencies>
        <dependency>
                <groupId>org.apache.maven.shared</groupId>
                <artifactId>maven-filtering</artifactId>
                <version>1.3</version>
        </dependency>
  </dependencies>
</plugin>

如:

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

解决办法 2 (修改IDEA文件编码方式):

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-reso

!!!!!!!修改完成后,不仅仅是配置文件的中文,Java代码的中文也会出现乱码,都需要重新改回原中文,然后就可以成功运行了

建议

创建了父项目以后,先不要添加模块和配置其他,先按照上面的操作,将文件编码修改为UTF-8,如此, 就不给出现该bug的机会

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/62117.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!