私は非常に単純なウェブアプリを持っていて、サーバーから.jsファイルと.cssファイル<script>
を<link>
タグで取得できません。エラー:GET http://localhost:8080/resources/js/lib.js 404 (Not Found)
これは私の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">
私のファイル:
私はここで何が間違っているのですか?
編集:ところで、私はチェックしました、そして私は彼らのURLによってファイルに簡単に到達することができます。localhost:8080 / myApp / resources / js / lib.jsにアクセスすると、ファイルの内容が表示されます。