I am trying to develop a new Spring boot application using MVC as a first step to move my existing Spring MVC application to Spring boot.
However, I am facing an is
Remove @EnableWebMvc annotation from your Spring Boot class. By default with @SpringBootApplication enables your application as web application. Declaring @EnableWebMvc explicitly will disable the auto configuration and Auto setting up DispatcherServlet will be overridden which is causing you the issue.