0
我有一個非常簡單的web應用程序,無法通過<script>
和<link>
標籤從服務器獲取.js和.css文件。 錯誤:GET http://localhost:8080/resources/js/lib.js 404 (Not Found)
不能找到js和css資源 - 得到404
這是我的index.jsp:
<html>
<head>
<jsp:include page="/pages/general/scripts.jsp"/>
</head>
<body>
...
</body>
</html>
這是scripts.jsp:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="/resources/js/lib.js"></script>
<link rel="stylesheet" type="text/css" href="/resources/css/style.css">
我的文件:
我是什麼?在這裏做錯了嗎?
編輯:順便說一句,我檢查,我可以很容易地通過他們的網址到達文件。如果我訪問本地主機:8080/myApp/resources/js/lib.js,那麼我會看到該文件的內容。