net:: ERROR_ABORTED 404(NOT FOUND) 在 netbeans 8.2 中找不到资源
net:: ERROR_ABORTED 404(NOT FOUND) resources could not found in netbeans 8.2
我正在 SPRING-HIBERNATE 中执行小项目。我已经在我的 css 文件中给出了 link
列表-customer.jsp :
<link type="text/css" rel="stylesheet"
href="${pageContext.request.contextPath}/resources/css/style.css"/>
像这样,我也给了
<mvc:resources location="/resources/" mapping="/resources/**"></mvc:resources>
在我的 sring-mvc-crud-demo.xml 文件中。
this is my project hierarchy
我不知道这个有什么问题link,请帮帮我。
这对我有用
我查看了我的 link 资源,结果是这样的:
HTTP://localhost:40610/web-customer-tracker/resources/css/style.css
所以我做了什么,我只是将我的资源文件夹从 WEB-INF 文件夹移动到 WEB PAGES 文件夹,现在它看起来像这样:image
移动此文件夹后,我清理了我的 net-beans 项目并运行它,我的问题就解决了。
我正在 SPRING-HIBERNATE 中执行小项目。我已经在我的 css 文件中给出了 link 列表-customer.jsp :
<link type="text/css" rel="stylesheet"
href="${pageContext.request.contextPath}/resources/css/style.css"/>
像这样,我也给了
<mvc:resources location="/resources/" mapping="/resources/**"></mvc:resources>
在我的 sring-mvc-crud-demo.xml 文件中。 this is my project hierarchy
我不知道这个有什么问题link,请帮帮我。
这对我有用 我查看了我的 link 资源,结果是这样的:
HTTP://localhost:40610/web-customer-tracker/resources/css/style.css
所以我做了什么,我只是将我的资源文件夹从 WEB-INF 文件夹移动到 WEB PAGES 文件夹,现在它看起来像这样:image
移动此文件夹后,我清理了我的 net-beans 项目并运行它,我的问题就解决了。