Spring MVC MultiActionController annotation example
In this tutorial, we show you how to develop a Spring MVC annotation-based MultiActionController, by using @RequestMapping. In XML-based MultiActionController, you have to configure the method name resolver (InternalPathMethodNameResolver, PropertiesMethodNameResolver or ParameterMethodNameResolver) to map the URL to a particular method name. But, life is more easier with annotation support, now you can use @RequestMapping annotation …