I'm editing code that is not my own, and need to follow the path of a RequestDispatcher.
RequestDispatcher dispatcher = this.getServlet().getServletContext().getRequestDispatcher([url]);
if (dispatcher == null) {
throw new Exception("Unable to find " + [url]);
}
logger.debug("Dispatching request to PDF Writer Servlet " + dispatcher.toString());
dispatcher.forward(request, response);
How can I find out where the path will take me?