「Spring」c:catchで例外を捕捉するサンプル
サンプルコード:
<c:catch var="catchException">
<%
int x = 10 / 0;
%>
</c:catch>
<c:if test="${catchException != null}">
<p> 例外:${catchException} <br />
例外メッセージ:${catchException.message}</p>
</c:if>
Coding Changes the World
サンプルコード:
<c:catch var="catchException">
<%
int x = 10 / 0;
%>
</c:catch>
<c:if test="${catchException != null}">
<p> 例外:${catchException} <br />
例外メッセージ:${catchException.message}</p>
</c:if>