当前位置: 代码迷 >> J2EE >> 哪儿错了?该怎么解决
  详细解决方案

哪儿错了?该怎么解决

热度:51   发布时间:2016-04-21 22:57:52.0
哪儿错了?
<a href="/displayProduct?productCode=8601">True Life Songs and Pictures</a>


404 Error

The server was not able to find the file you requested.





<servlet>
  <servlet-name>DisplayProductServlet</servlet-name>
  <servlet-class>music.catalog.DisplayProductServlet</servlet-class>
 </servlet>

 <servlet-mapping>
  <servlet-name>DisplayProductServlet</servlet-name>
  <url-pattern>/catalog/displayProduct</url-pattern>
 </servlet-mapping>



------解决方案--------------------
<url-pattern>/displayProduct</url-pattern>

------解决方案--------------------
<a href="/displayProduct?productCode=8601">True Life Songs and Pictures</a> 改为
1.
<a href="<%=request.getContextPath()%>/displayProduct?productCode=8601">True Life Songs and Pictures</a>

2. 
<a href${pageContext.request.contextPath}/displayProduct?productCode=8601">True Life Songs and Pictures</a>
  相关解决方案