Hi,
I want to use spring boot 2.0.0 in my project. So, have to add this dependency in pom.xml file.
What is spring boot starter web maven dependency 2.0.0?
Thanks
Hi,
You add following code:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.0.0.RELEASE</version> </dependency>
The above code is for spring boot starter web maven dependency 2.0.0.
Thanks
Ads