Adding dependency for Spring MVC

Let's start by adding the Spring MVC dependency to our pom.xml file. The following code shows the dependency to be incorporated. Since we are using Spring BOM, we do not need to specify the artifact version:

    <dependency> 
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>

DispatcherServlet is an implementation of the FrontController pattern. Any request to Spring MVC will be handled by FrontController, that is, DispatcherServlet.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset