aspose file tools
The moose likes GWT and the fly likes how to jump page like RequestDispatcher.forward(...) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Application Frameworks » GWT
Reply Bookmark "how to jump page like RequestDispatcher.forward(...)" Watch "how to jump page like RequestDispatcher.forward(...)" New topic
Author

how to jump page like RequestDispatcher.forward(...)

peter tong
Ranch Hand

Joined: Mar 15, 2008
Posts: 219
in traditional servlet, jsp,
jsp set action to servlet, then servlet call requestdispatcher to another jsp. it is very easy to find reference about this.
in GWT,
I spend many time to search online but still no something like this jump page (from one jsp to another jsp through servlet),
all mention is just GWT-RPC, which the return page is still the same as calling page, any method to accomplish jsp(or html) to servlet to another jsp(or html)
using GWT-RPC or GWT in general?
Maneesh Godbole
Saloon Keeper

Joined: Jul 26, 2007
Posts: 7602

GWT is typically a "single" page view where the data is refreshed and not the whole page. To change the data, you should be using GWT-RPC along with GWT History (in case you want to load a page "state")

[Donate a pint, save a life!] [How to ask questions]
peter tong
Ranch Hand

Joined: Mar 15, 2008
Posts: 219
Maneesh Godbole wrote:GWT is typically a "single" page view where the data is refreshed and not the whole page. To change the data, you should be using GWT-RPC along with GWT History (in case you want to load a page "state")


thanks
 
 
subject: how to jump page like RequestDispatcher.forward(...)
 
Threads others viewed
how to do the following simple work in GWT
Google Web Toolkit Applications book
What, besides servlets and jsp, may be used for web-application?
GWT with Struts
Servlet Redirect
IntelliJ Java IDE