まとめ @ wiki
カスタムエラーページ
最終更新:
shells
-
view
カスタムエラーページ 【HP】
目次
ソース
exception_miss.jsp
<%@ page contentType="text/html; charset=Shift_JIS"
errorPage="exception_error.jsp" %>
<% Class.forName(application.getInitParameter("nothing")); %>exception_error.jsp
<%@ page contentType="text/html;charset=Shift_JIS" isErrorPage="true" %>
<html>
<head>
<title>カスタムエラーページ</title>
</head>
<body>
<h1>エラーが発生しました</h1>
<hr />
<pre><%=exception.toString()%></pre>
<% application.log(exception.toString()); %>
</body>
</html>実行結果
エラーが発生しました
──────────────────────────
java.lang.NullPointerException