springmvc+hibernate+spring js无法引入

代码如下:问题是:工程里的js无法引入!

js 目录:全类名:/SpringMVC/WebContent/resources

后台首页

href="./resources/easyui/themes/default/easyui.css" />
href="./resources/easyui/themes2/icon.css" />



<%=basePath%>



页面报错:

"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/" />

easyui的包没有找到吧,要不就是没有放到工程下,要不就是相对路径不对。再仔细检查下。

/SpringMVC/WebContent/resources/easyui/jquery.easyui.min.js这个是我的jquery.easyui.min.js的全类名,报错的路径对比,没发现哪里错啊

打开你编译之后的工程目录 比如tomcat就去webapp里面找 看 从你的页面开始按照你写得路径有没有找到js文件

路径还是权限不对吧?检查一下呢。

打开你编译之后的工程目录 比如tomcat就去webapp里面找 看 从你的页面开始按照你写得路径有没有找到js文件

这个是有的