RequestDispatcher « Tomcat « JSP-Servlet Q&A





1. RequestDispatcher.forward() versus RequestDispatcher.include()    stackoverflow.com

I have observed that while RequestDispatcher.forward(request, response) can throw an IllegalStateException (if the response is committed) , RequestDispatcher.include(request, response) does not throw an IllegalStateException(even if the response was committed before). I have ...

2. RequestDispatcher forward between Tomcat instances    stackoverflow.com

I have a scenario where I have single entry point Servlet and further Servlets that requests are forwarded to that undertake heavy processing. I am looking at options to distribute this load ...