HTML でコード化された HTTP を送り返そうとしています。「HttpServletResponse 型のメソッド sendStatus(int, String) は定義されていません」というエラーが表示されます。私もコードだけで試しました。代わりに sendError() を使用すると、HTML は送信されません。
<%@page contentType="text/html; charset=utf-8" %>
<%@ page isErrorPage = "true"%>
<%response.sendStatus(500, "TEST 500 ERROR WITH HTML PAGE");%>
<html>
<body>
<h1>
Test HTTP Error: 500 ERROR with HTML page
</h1>
</body>
</html>
私は得ています:
ERROR_500_subjectdoc_htmlheader_error_realhtmlerrorpage.jsp:3:12: The method sendStatus(int, String) is undefined for the type HttpServletResponse
<%response.sendStatus(500, "TEST 500 ERROR WITH HTML PAGE");%>