Spring / Spring MVC Interview questions
How to start Spring MVC using spring boot?
Spring provides spring-boot-starter-web that can resolve all Spring MVC required JAR. In our project, we can include it using maven as dependency.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>1.2.2.RELEASE</version> </dependency>
More Related questions...