most ( well, all ) of my GWT apps are "single page apps", I include the GWT generated js in index.jsp at the web root, and drive all screen display through history tokens. The administration configuration tab is just a Widget that is ( built/triggered/shown) when say I get a history change with #administration as the token. The user never sees any other URL's... I understand that this may not be possible if you are "migrating" an older application, but there is a sly trick to that too... in the case of needing to display a "legacy jsp/html page", I just create an IFrame and load the page into it, then display that in my apps main area...
On Jun 5, 12:20 pm, Mickey <[email protected]> wrote: > I know that arguments can be easily passed into the application using > URL query string parameters. But I was wondering whether it would be > possible to define mutliple (or alias) URL paths into the same GWT > application to produce a more natural/cleaner looking URL for > targeting logical locations in the application (e.g. administration > configuration tab in the app > =http://localhost/myapp/administration/configuration/...). > > Is this possible (e.g. url-pattern, redirection filter, multiple > module entry points, etc), or is it more trouble than it is worth? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
