Spring and Tag
In this example, you will learn how to create a HTML radio button with Spring <form:radiobutton> tag. For Example : <form:radiobutton path="fruit" value="Apple" />Apple...
View ArticleSpring Handler mappings
You can map incoming web requests to appropriate handlers using a handler mapping. DispatcherServlet consults one or more handler mappings to determine which controller the request should be sent to....
View ArticleSpring MVC BeanNameUrlHandlerMapping
BeanNameUrlHandlerMapping maps from URLs to beans with names that start with a slash (“/”). This is the default implementation used by the DispatcherServlet. For Example : <bean id="handlerMapping"...
View ArticleSpring MVC ControllerBeanNameHandlerMapping
This is similar to BeanNameUrlHandlerMapping but doesn’t expect bean names to follow the URL convention: It turns plain bean names into URLs by prepending a slash and optionally applying a specified...
View ArticleSpring MVC ControllerClassNameHandlerMapping
ControllerClassNameHandlerMapping detects all controllers in application context, remove the ‘Controller’ and uses the lowercase to create URL mapping with “/” as suffix. This implementation does not...
View ArticleSpring MVC DefaultAnnotationHandlerMapping
DefaultAnnotationHandlerMapping maps request to class and/or methods that are annotated with @RequestMapping. For example : @Controller @RequestMapping("/helloworld.html") public class...
View ArticleSpring MVC SimpleUrlHandlerMapping
SimpleUrlHandlerMapping maps controllers to URLs using a property collection defined in the Spring application context. You can declare SimpleUrlHandlerMapping in following 3 ways: prop key <bean...
View ArticleConfigure Multiple Handler Mappings in Spring MVC
Spring supports a variety of URL handler mappings and we can use multiple URL Handler mappings in the same application. Spring allows us to prioritize the URL Handler mappings. Every handler mapping...
View ArticleSpring MultiActionController
Using MultiActionController class, you can write multiple actions in into one Action class and removes the creation of multiple action classes. First create a new Dynamic Web Project and configure it...
View ArticleSpring MultiActionController using Annotation
Using MultiActionController class, you can write multiple actions in into one Action class and removes the creation of multiple action classes. To configure it, define @RequestMapping with mapping URL...
View Article