2016-12-30 24 views
1

我最近將應用程序升級到了Struts 2.5.8和Tiles 3.0.7。我也升級到Spring v4.3.4,但它沒有與瓷磚整合。直到現在,我才能夠正確地啓動我的應用程序,而不會有任何錯Struts 2.5.8和Tiles 3.0.7:無法在JSP頁面內加載像img,css和js這樣的資源

我看到所有struts.xmltiles.xml文件已正確加載並且正在正確渲染。但是,當我打開第一個(登錄)頁面時,我發現它無法加載像webapp目錄內存在的CSS,JS和圖像等資源。我在日誌文件的任何地方都看不到任何錯誤。

但是,當我按下F12在瀏覽器中,我看到在瀏覽器控制檯下面的錯誤:

Error1: Unable to load any resource 
Not allowed to load local resource: file:///C:/Users/Public/Documents/FIXED/Rosy/JComponents/SALYExplorerWebApp/SALYExplorer/src/main/webapp/static/style/content.css 
localhost:8485/SALYExplorer/static/javascript/javascript.js Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/javascript/swap.js Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/javascript/SALYExplorer-layout.js Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/javascript/prototype.js Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/pictures/utils/print.gif Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/style/xtree_ext.js Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/style/xtree.css Failed to load resource: the server responded with a status of 404() 
localhost:8485/SALYExplorer/static/pictures/proximus.jpg Failed to load resource: the server responded with a status of 404() 
localhost/:26 Uncaught ReferenceError: set_table_display is not defined 
localhost:8485/SALYExplorer/static/style/xtree.css Failed to load resource: the server responded with a status of 404() 

F.e. 
Request URL:http://localhost:8080/SALYExplorer/static/javascript/prototype.js 
Request Method:GET 
Status Code:404 
Remote Address:[::1]:8080 
Response Headers 
view source 
Content-Language:en 
Content-Length:990 
Content-Type:text/html;charset=utf-8 
Date:Fri, 30 Dec 2016 18:17:39 GMT 
Request Headers 
view source 
Accept:*/* 
Accept-Encoding:gzip, deflate, sdch 
Accept-Language:en-US,en;q=0.8 
Connection:keep-alive 
Cookie:CONFIG=IU%3DYES%7CPA%3DYES%7CCA%3DYES%7CNA%3DYES%7CCN%3DYES%7CCI%3DYES%7CDI%3DYES%7CLI%3DYES%7CTI%3DYES%7CNI%3DYES%7CSI%3DYES%7CPM%3DYES%7CSU%3DYES%7CII%3DYES%7CVS%3DYES%7CVN%3DYES%7CSW%3DYES%7COS%3DYES; XTREE=28%3D1%7C39%3D1%7C89%3D1%7C31%3D1; username=id829957; logService=RRO_TEST; language=EN; authMethod=AUTH_LAM; JSESSIONID=61F12923C6E58695243E48B753DAFAFF 
Host:localhost:8080 
Referer:http://localhost:8080/SALYExplorer/ 
User-Agent:Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36 
+1

只需將您的'static'文件夾的名稱(包含資源)更改爲其他名稱即可。 –

+1

Woh ...非常感謝Aleksandr M.你是我的生命保護者:)它像魅力一樣工作。所以我們不能將關鍵字作爲目錄名稱。但是在升級之前它正在工作。無論如何,再次感謝,祝你新年快樂:) – Vikd

+1

@AleksandrM可以請發送它作爲答案,所以這個問題可以被標記爲回答。 –

回答

2

在Struts2的URL-S開始與/static是從類路徑獲取資源。

閱讀有關documentation中靜態內容處理的更多信息。

對於您的問題最簡單的解決方案是更改文件夾的名稱,該文件夾將資源從static保存到其他位置。

+1

@Vikd請將它標記爲正確,正如您評論的那樣! –

+1

我已經標記爲正確:) – Vikd

相關問題