JSTL异常属性问题
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ page errorPage="errorPage.jsp" %><html> <body> About to be do a risky thing: <br/> <c:catch var="myException"> Inside the catch... <br/> <% int x = 10/0; %> <% out.println(x); %> </c:catch> <c:if test=" ${myException != null } "> There was an exception : ${ myException.message } <br/> </c:if> If you see this, we survived. </body></html>