qq_35081827 2016-12-05 02:21 采纳率: 20%
浏览 1259
已采纳

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"

  • 写回答

6条回答 默认 最新

  • 灿烂的鬼怪 2016-12-05 03:14
    关注

    xml 文件设置静态资源访问

    类似于:

        <resources mapping="/resources/**" location="/resources/" />
        <resources mapping="/images/**" location="/images/" />
        <resources mapping="/js/**" location="/js/" />
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?