Pardon my ignorance, but SpringBoot as far as I understand is an aid to set up a spring project.It simplifies dependency management by its opinionated view and takes away the pain associated with gathering all the dependencies on our own. This apart it has a twist in the way it packages things up i.e it packages the container itself with my app(uber jar) and makes war deployment etc a thing of the past.This kind of blurs the line between a web-app and a non web-app in my opinion.
From my understanding none of this is remotely related to micro-services but often I come across articles sounding like "microservices with SpringBoot". SpringBoot and microservices are used in the same breath giving one the notion that it is Spring's way of building in a microservices way?Isn't this wrong or am I missing something here?
warSee docs.spring.io/spring-boot/docs/current/reference/htmlsingle/… - Daniel Moses