Adding dependency for Spring MVC

Let's start with adding the Spring MVC dependency to our pom.xml. The following code shows the dependency to be added in. 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 Front Controller pattern. Any request to Spring MVC will be handled by the Front Controller, 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