Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes JSP and the fly likes getDispatcher().forward() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "getDispatcher().forward()" Watch "getDispatcher().forward()" New topic
Author

getDispatcher().forward()

Sajith Sidharthan
Greenhorn

Joined: Mar 31, 2004
Posts: 2
Previously I was using the request.sendRedirect method to pass the control from my servlet to the jsp pages and I was retrieving the data from the DB directly from the jsp pages. Now I have to get the data from the servlet and then forward it to the jsp pages, this can be done either by passing it through session or by setAttribute method. By using the setAttribute and forward I am getting the data on the page but the image paths set there are incorrect. The paths are relative to the servlet instead of relative to the jsp page.
Is there any other method to do so without changing the paths.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56554
    
  14

See this recent topic.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: getDispatcher().forward()
 
Similar Threads
Servlet forward JSP, image problem
passing an ArrayList from a servlet to JSP
servlet mapping
Stylesheet doesn't load in JSP
Servlet output into JSP template