I have configured global Exception mapping for java.lang.Exception and defined tiles results type.
<global-exception-mappings>
<exception-mapping exception="java.lang.Exception" result="exception" />
</global-exception-mappings>
Is there any way to get the Exception message using strut2 tags or any other jsp OR JSTL tags to find this exception message.
You can display information about the exception in the browser if you want by using s:property tags with a value of exception and exceptionStack. Something like
When the exception interceptor is triggered it adds to the fields available for display the exception message and the exception’s stack trace and its accessible to the S2tag using normal tag syntax.
For more information read the official S2 document page about Exception Handling
Exception-Handling