0
由於某些原因,看起來我的網絡應用程序路徑有問題。Web應用程序:路徑有問題?
我有以下路徑爲我的WEB-INF在Eclipse:
Project
--src
-- main
--webapp
--WEB-INF
--jsp
--css
我創建使用Spring,Hibernate和Maven的一個項目。
但這例如不工作,不從我的jsp頁面加載的樣式:
<link href="css/style.css" rel="stylesheet" type="text/css">
歡迎頁面和錯誤頁面到web.xml中不要工作太:
<welcome-file-list>
<welcome-file>/students</welcome-file>
</welcome-file-list>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/jsp/error.jsp</location>
</error-page>
錯誤頁面的結果是消息「網站無法顯示頁面」進入瀏覽器。但是,如果我刪除錯誤頁面配置,我會得到一個堆棧跟蹤,所以這意味着在某種程度上我的配置被使用了,但是在解釋路徑時有些問題。
什麼可能是錯的?