2
有沒有辦法在jsp頁面中獲取tomcat對HTTP錯誤的默認描述? 我可以得到狀態代碼(404,500,505),如:jsp get http錯誤描述
<%=response.getStatus() %>
,但我沒有找到如何獲得描述:see the printscreen
你有什麼想法?
謝謝你的幫助。
有沒有辦法在jsp頁面中獲取tomcat對HTTP錯誤的默認描述? 我可以得到狀態代碼(404,500,505),如:jsp get http錯誤描述
<%=response.getStatus() %>
,但我沒有找到如何獲得描述:see the printscreen
你有什麼想法?
謝謝你的幫助。
如果有人有興趣,我發現在計算器的答案: Java library to map HTTP status code to description?
您將需要下載的Appache Commons HttpClient 的jar並將其導入到你的JSP頁面:
<%@page import="org.apache.commons.httpclient.*"%>
並與方法getStatusText你可以得到Http Error的描述: <%=HttpStatus.getStatusText(response.getStatus())%>
。
你必須看看這個問題,可能會幫助你:http://stackoverflow.com/questions/1302072/how-can-i-get-the-http-status-code-out-of-a- servletresponse-in-a-servletfilter – mumair
我看到了,但它沒有幫助我。 – havana1962