404页码头在哪里?

时间:2016-06-24 13:01:27

标签: jersey jetty http-status-code-404

我使用码头和运动衫建立了一个宁静的服务。当球衣返回404响应时,码头将返回404网页:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
<title>Error 404 </title>
</head>
<body>
<h2>HTTP ERROR: 404</h2>
<p>Problem accessing /test/404page. Reason:
<pre>    Not Found</pre></p>
<hr /><i><small>Powered by Jetty://</small></i>
</body>
</html>

但是,除了404状态代码之外我什么都不想要。我想删除默认的404页面,但我找不到它的位置。我该怎么办?

1 个答案:

答案 0 :(得分:1)

您需要做的是将以下Jersey属性设置为true

  

ServerProperties.RESPONSE_SET_STATUS_OVER_SEND_ERROR

这将使得只发送状态代码,而不是错误页面。