Friday, February 3, 2012

Exception Handling in JSTL

Using jstl tag <c:catch> we can capture the exceptions occuring in jsp pages



<%@ taglib  prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
<html>
<head>
   <title>Error Handling Example</title>
</head>
<body>
<c:catch var ="catchException">
The exception will be thrown inside the catch:<br>
<% int x = 5/0;%>
</c:catch>

<c:if test = "${catchException!=null}">
The exception is : ${catchException}<br><br>
There is an exception: ${catchException.message}<br>
</c:if>


</body>
</html>

No comments:

Post a Comment

SpringBoot Application Event Listeners

When a spring boot application starts few events occurs in below order ApplicationStartingEvent ApplicationEnvironmentPreparedEvent Applicat...