In Struts I have used
<constant name="struts.action.excludePattern" value="/servlet-action"/>
Doing above, Struts avoids looking for /servlet-action
into struts.xml
and goes to web.xml
.
How to achieve this in Spring MVC?
Or can @RequestMapping
be done for servlets?