idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)

今天用idea写项目时发现页面的css文件和js文件都没有加载出来,按F12查看控制台查看报错

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第1张图片

 首先检查idea中项目配置路径是否出错

 可以看到路径是正确的,接着查看浏览器是否能够将css文件和js文件读取出来

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第2张图片

可以看到虽然能找到这个文件,但是文件内容是空的,这说明这个文件并不是我们放在idea中的css文件,而是根据路径自动生成的,说明idea在扫描静态资源(js,css,images)时出现了差错

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第3张图片 

 检查springmvc中是否有关于扫描静态资源的代码,发现没有

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第4张图片

 添加代码,问题解决

    
    

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第5张图片

idea写web项目时报错Failed to load resource: the server responded with a status of 404 (Not Found)_第6张图片

 

 

你可能感兴趣的:(ssm,idea,intellij-idea,java,ide)