I have JSP page with some EL inside. Unfortunately, EL expressions throws exception. As result user sees half of the page while system logs exception and sends my email.
Is it possible to configure container (tomcat) to process jsp page first and THEN display it to user and display 500 error page in case of any exception?
Error page is much better than partially rendered page.
Yes, I know that template engine should process viewmodel which nothing but accessors/mutators and no exception should be thrown, but for now I have to access some business (domain model) objects in EL.