Can I Stop JSP Execution while in the Midst of Processing a Request
Yes. Preemptive termination of request processing on an error condition is a good way to maximize the throughput of a high-volume JSP engine. The trick (assuming Java is your scripting language) is to use the return statement when you want to terminate further processing. In JavaServer Pages (JSP), once the processing of a request has … Read more