1. 程式人生 > >SpringMVC預設攔截靜態資源解決

SpringMVC預設攔截靜態資源解決

在這裡插入圖片描述
No mapping found for HTTP request with URI[/ResponseBodyTest/js/jquery-1.11.0.min.js] in DispathcherServlet with name’springmvc
在這裡插入圖片描述
檢視靜態資源路徑:發現請求路徑並沒有寫錯,出錯的原因是什麼呢?在這裡插入圖片描述
在這裡插入圖片描述
原因:核心控制器攔截的路徑是/,/表示“http://localhost:8080/專案名/”這個路徑,所以
如下路徑都可以被攔截:
http://localhost:8080/HelloMVC/js/jquery.js
http://localhost:8080/HelloMVC/a
在這裡插入圖片描述
如何解決:

  • 修改tomcat的配置檔案
    在這裡插入圖片描述
  • 在spring中配置
    方法1:(推薦)
      在這裡插入圖片描述
    方法2:location=”/”表示請求根目錄下的所有內容
    <mvc:resources location="/,classpath:/META-INF/publicResources/" mapping="/js/**"/>

No mapping found for HTTP request with URI[/ResponseBodyTest/js/jquery-1.11.0.min.js] in DispathcherServlet with name’springmvc解決方案就是這些