I am setting up my application and was wondering if there are best practices as far as mapping spring dispatch
servlets and naming conventions in today's Spring MVC applications. For example, back when I was using
Struts all the actions had a .do extension and that's how they mapped to the Struts servlet. Is this still the convention with Spring MVC or is it more path based now?
How about when creating REST services? Should the servlet be mapped with some sort of a common extension or using path conventions?
I noticed that some examples map using "/", however, that does not work when static resources such as images or JavaScript needs to be accessed as everything goes to the servlet for processing and creates exceptions.
Thanks.
-AP_