程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> springmvc js jpg html 不能訪問,springmvcjs

springmvc js jpg html 不能訪問,springmvcjs

編輯:JAVA綜合教程

springmvc js jpg html 不能訪問,springmvcjs


由於web.xml 的配置的原因,會默認攔截所有請求到springmvc的框架中去,所以導致js jpg html等的請求都無效了

springmvc3.0以上的版本多了個靜態目錄,只要配置靜態目錄就可以過濾掉該目錄下的請求

<mvc:resources location="/html/" mapping="/html/**"/>
    <mvc:resources location="/back_css/" mapping="/back_css/**"/>
    <mvc:resources location="/back_js/" mapping="/back_js/**"/>
    <mvc:resources location="/back_img/" mapping="/back_img/**"/>
    <mvc:resources location="/back_other/" mapping="/back_other/**"/>
    <mvc:resources location="/layer/" mapping="/layer/**"/>
    <mvc:resources location="/laypage/" mapping="/laypage/**"/>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved