我正在使用 extjs 4 MVC 架构,而且我正在使用 spring MVC
当我运行我的项目时,我看不到任何东西,但是当我使用firebug检查时,我看到所有js文件都已加载
这是我在firebug中看到的错误
GET http://localhost:8080/Views/Ext4Example/view/login/LoginForm.js?_dc=1366793593142 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/app/controller/Login.js?_dc=1366793593216 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/Ext4Example/view/login/WestMenu.js?_dc=1366793593147 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/Ext4Example/view/login/HomePage.js?_dc=1366793593141 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/Ext4Example/model/Login.js?_dc=1366793593151 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/app/view/Viewport.js?_dc=1366793593214 404 (Not Found) ext-all.js:1
GET http://localhost:8080/Views/Ext4Example/store/Login.js?_dc=1366793593151 404 (Not Found)
并且在eclipse控制台上我看到了
24 avr. 2013 10:31:40 org.springframework.web.servlet.DispatcherServlet noHandlerFound
ATTENTION: No mapping found for HTTP request with URI [/Views/Ext4Example/view/login/LoginForm.js] in
DispatcherServlet with name 'mvc-dispatcher'
我也写了映射部分
<mvc:resources mapping="/resources/**" location="/resources/" />
任何人都有回应?
答案 0 :(得分:0)
看起来您使用的是不同的文件夹结构。在这种情况下,您的资源映射不起作用。
尝试以下资源映射。
<mvc:resources mapping="/Views/**" location="/Views/" />