Url mapping with my servlet?
        Posted  
        
            by user291701
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user291701
        
        
        
        Published on 2010-04-06T14:08:44Z
        Indexed on 
            2010/04/06
            14:13 UTC
        
        
        Read the original article
        Hit count: 264
        
gwt
Hi,
I'm using GWT with GAE. When the user enters any of the following urls, I want to just serve my app as usual to them:
http://www.mysite.com/
http://www.mysite.com/dog
http://www.mysite.com/cat
the first case works by default. I'm not sure how to get the /dog and /cat cases to work. I think I have to modify something with the url mappings to get that to work in web.xml. Essentially I'm trying to just get my app served with any url entered:
http://www.mysite.com/*
Thanks
© Stack Overflow or respective owner