Hi,
I want to use Spring Boot Web Starter 2.1.1 in my spring boot application. My application is based on the old version of Spring Boot. Now will use Spring Boot Web Starter 2.1.1 for my project.
What is Spring Boot Web Starter 2.1.1 maven dependency?
Thanks
Hi,
The Spring Boot Web Starter 2.1.1 is the latest version of spring boot as of now. You can upgrade your app to latest version of Spring Boot Web Starter 2.1.1 .
Here is maven dependency code for Spring Boot Web Starter 2.1.1 :
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.1.1.RELEASE</version> </dependency>
Thanks
Ads