JSP jstl-core<c:catch> 标记

  • jstl-core<c:catch> 标记

    <c:catch>标签捕捉任何的Throwable发生在其主体和任选的抛出的异常。它用于错误处理并更优雅地处理问题。
  • 属性

    属性 描述 必需 默认值
    var 如果主体中的元素引发了java.lang.Throwable变量的名称。 None
  • 示例

    
    <%@ 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