what does Spring Boot do?

591 views

Reading about the framework Spring and having trouble understanding what Spring Boot and Spring Batch does if someone has a simple analogy and what was the old way of doing things and what Spring solves?

In: Technology

2 Answers

Anonymous 0 Comments

I don’t have extensive experience in it so I’m sure others can explain some of the finer points, but one of the major things it does is it’s a standalone web application.

You don’t need to configure a web server, or manage server settings, or anything like that…you build your application, and double-click the executable and your web application runs all on its own.

Old Method: Choose and download/install web server software -> Configure web server -> Build and Deploy web application to server

Spring Boot: Build and deploy web application

You are viewing 1 out of 2 answers, click here to view all answers.