Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“

异常

在 IDEA 中执行 Maven 的 compile 命令报错提示:

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources) on project xxx: Cannot create resource output directory: C:\xxx\xxxxxx\target\classes

原因

是之前的 clean 命令并没有把项目的 target 文件夹给删除掉,打开项目目录找到 target 文件夹手动删除也无法成功。
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第1张图片

解决

复制该 target 文件夹的绝对路径(如C:\xxx\xxxxxx\target)。接着打开【任务管理器】
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第2张图片

找到【性能】面板,点击【打开资源监视器】
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第3张图片

接着在【CPU】面板中的【关联的句柄】面板中的输入框中将刚才复制的路径粘贴进去
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第4张图片

待搜索完成后,选中出现的结果,鼠标右键单击,选择【结束进程】
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第5张图片
Maven执行compile命令报错提示“on project xxx: Cannot create resource output directory“_第6张图片

结束后再重新执行 Maven 的 compile 命令就可以正常编译了。

你可能感兴趣的:(异常处理,maven,intellij-idea,java)