Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误

运行报错:

Failed to load resource: the server responded with a status of 404 (Not Found)

Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误_第1张图片

原因:

        发现是iml文件配置错误,文件名称与项目名称不一致,修改iml文件名称使其一致。

 Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误_第2张图片

Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误_第3张图片

修改再次运行项目,成功!

Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误_第4张图片

Failed to load resource: the server responded with a status of 404 (Not Found) iml文件配置错误_第5张图片

         iml是IDEA中的项目标识文件,缺少这个文件,idea就无法识别项目。同Eclipse的.project性质一样。

         iml文件是IDEA自己创建的模块文件,用于Java应用开发,存储一些模块相关的信息,比如一个Java组件,插件组件,maven组件等,存储一些模块路径信息,依赖信息以及别的一些设置。

         .idea文件夹:存放项目的配置信息、包括数据源、类库、项目字符编码、历史记录、版本控制信息等。

        可以在File types中的Ignore files and folders中可以输入 .idea; 和 *.iml; 将其隐藏。

        但不建议隐藏iml,因为项目名中出现中括号是因为iml文件名和项目文件名不一样,需要更改iml文件名

你可能感兴趣的:(maven,java,servlet,前端)