The application host a database of users, queried by searching usernames
using the search view and results are shown in the user results view.
Pretty useful enough. However I need to bb add a way that user view can
be viewed by just typing http://myapp.com/user123
I am thinking that the question I have here, the answer is a server side
solution. However if there's a client side solution, please let me know.
One fellow here in StackOVerflow suggested that the format would be like
this: mygwtapp.com/index.html#user123 however the format is important to
be like: http://myapp.com/user123
I have tried using GWT Fragment Identifier approach well and works well
when the app is in debug mode and when deployed in Tomcat it works when
the main page has loaded already. This approach though it works the page
is not bookmark-able, i.e. when users type
http://myapp.com/index.html#user123 in the browser I get a blank page.
Is there any way to achieve this kind of feature?
So you mean with gwt places when user type in the browser url like
http://mygwtapp.com/user456 it will show the view for the user? Even if
user page has not been browsed in the browser used? I am really
unfamiliar with gwt places.