如何在 JSP 中处理异常?
<c:catch> 标签会捕获在其主体中发生的任何 Throwable,并且可以选择对其进行公开。它用于错误处理,以及更巧妙地处理问题。
属性
<c:catch> 标签具有以下属性 -
属性 | 说明 | 必需 | 默认 |
---|---|---|---|
var | 如果由主体内的元素抛出,则用于保存 java.lang.Throwable 的变量的名称。 | 否 | 无 |
示例
<%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> <html> <head> <title><c:catch> Tag Example</title> </head> <body> <c:catch var ="catchException"> <% int x = 5/0;%> </c:catch> <c:if test = "${catchException != null}"> <p>The exception is : ${catchException} <br /> There is an exception: ${catchException.message}</p> </c:if> </body> </html>
上面的代码将生成以下结果 -
The exception is : java.lang.ArithmaticException: / by zero There is an exception: / by zero
广告