我在webapp中創建了一個使用jQuery,CSS和Angular JS的簡單JSP頁面。所有的jquery-1.12.0.js,angular.min.js and TableCSSCode.css位於JSP頁面所在的同一位置。最初我的應用上下文是mycontext,所以我的實用程序的URL是http://10.28.27.10:7006/mycontext/myTool.jsp。更改上下文根後,JSP頁面不工作
後來我不得不從mycontext到測試/ newcontext/mycontext改變我的背景。做完這些之後,我可以啓動新的URL,例如http://10.28.27.10:7006/test/newcontext/mycontext/myTool.jsp但JSP不能讀取jQuery,CSS和Angular JS。
下面是我使用的代碼行:
<script type="text/javascript" src="${pageContext.request.contextPath}/jquery-1.12.0.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath}/angular.min.js"></script>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/TableCSSCode.css">
是否有人可以幫助我在此。
嘗試清理你的項目一次,然後重試 –
我做了一切。我也重新啓動了服務器。 – SonuR