Issue
There are many people who advised me to use Spring Boot instead of Spring to develop REST web services. I want to know what exactly the difference between the two is?
Solution
In short
- Spring Boot reduces the need to write a lot of configuration and boilerplate code.
- It has an opinionated view on Spring Platform and third-party libraries so you can get started with minimum effort.
- Easy to create standalone applications with embedded Tomcat/Jetty/Undertow.
- Provides metrics, health checks, and externalized configuration.
You can read more here http://projects.spring.io/spring-boot/
Answered By - medvedev1088
Answer Checked By - Mary Flores (JavaFixing Volunteer)