This page gives you a quick reference to get Spring Boot Starter Web dependency for Maven or Gradle projects.
Spring Boot Starter Web dependency is a starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container.
You can also download the Spring Boot Starter Web dependency, the link given at the "Download JAR File" section.
Spring Boot Starter Web dependency is a starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container.
Spring Boot Starter Web Maven Dependency
Copy below maven dependency and paste in your project pom.xml file:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Spring Boot Starter Web Gradle Dependency
Copy below Gradle dependency and paste it into your project build.gradle file:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
Comments
Post a Comment