InterviewSolution
Saved Bookmarks
| 1. |
Can I Stop Jsp Execution While In The Midst Of Processing A Request? |
|
Answer» 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. 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. |
|