I have a Java Web application that has several servlets with the following mappings.
ServletOne -> /one
ServletTwo -> /two
ServletThree -> /three
When I make a request for an action that doesn't exist I get a 403 (Forbidden), ie: /foo. I would like to change that to give a 404 (Not Found). How can I do that?
If getting a 404 is default behavior, then where can I look for that setting that's throwing things off? I tried googling for this, but I wasn't able to come up with a search query that yielded anything related.
TIA!