代碼如下:問題是:工程裡的js無法引入!
js 目錄:全類名:/SpringMVC/WebContent/resources
href="./resources/easyui/themes/default/easyui.css" />
href="./resources/easyui/themes2/icon.css" />
頁面報錯:
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/jquery.easyui.min.js"
jquery.....min.js
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/locale/easyui-lang-zh_CN.js"
easyui-...h_CN.js
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/themes2/icon.css"
icon.css
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/jquery.min.js"
jquery.min.js
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/themes/default/easyui.css"
easyui.css
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/jquery.easyui.min.js"
jquery.....min.js
"NetworkError: 404 Not Found - http://localhost:8080/SpringMVC/resources/easyui/locale/easyui-lang-zh_CN.js"
xml 文件設置靜態資源訪問
類似於:
<resources mapping="/resources/**" location="/resources/" />
<resources mapping="/images/**" location="/images/" />
<resources mapping="/js/**" location="/js/" />