我是新來的Ext,它是我第一次接觸這個框架,並且我正在創建java web應用程序。這裏是我的文件夾結構:Ext MVC不加載所有文件夾和源文件
src
--main
--webapp
--index
--application
--controller
--Index.js
--model
--store
--view
--MainPanel.js
--Index.js
--resources
--WEB-INF
--Index.jsp
這裏的webapp /索引/ Index.js
Ext.application({
name: 'Spring_Ext',
appFolder: '/index/application',
controllers: [
'Index'
]
});
這裏是web應用/索引/應用/控制器/ Index.js
Ext.define('Spring_Ext.controller.Index',{
extend: 'Ext.app.Controller',
views: ['MainPanel'],
init: function(){
....
}
....
});
當我在tomcat上運行chrome時,出現錯誤,說它找不到(404) GET http://localhost:8081/index/application/controller/Index.js?_dc=1425849848988 ext-all-debug.js:6262
當在索引文件夾中的chrome開發人員的源代碼標籤中查看時,沒有具有MVC結構的應用程序文件夾,但只有Index.js。