Spring Boot: Difference between revisions
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
=Overview= | =Overview= | ||
Spring Boot is an extension of the [[Spring Framework]] that offer several productivity enhancements, such as [[Spring_Boot_Concepts#Autoconfiguration|autoconfiguration]]. Spring Boot aims at simplifying the Spring development model. Spring Boot applications tend to bring everything they need with them - like Tomcat - and don't need to be deployed to some application server. | Spring Boot is an extension of the [[Spring Framework]] that offer several productivity enhancements, such as [[Spring_Boot_Concepts#Autoconfiguration|autoconfiguration]], starter dependencies. Spring Boot aims at simplifying the Spring development model. Spring Boot applications tend to bring everything they need with them - like Tomcat - and don't need to be deployed to some application server. | ||
=Subjects= | =Subjects= |
Revision as of 04:28, 11 October 2018
External
- https://spring.io/projects/spring-boot
- Spring Boot Reference Guide https://docs.spring.io/spring-boot/docs/2.0.5.RELEASE/reference/htmlsingle/
- InfoQ Exploring Micro-frameworks: Spring Boot https://www.infoq.com/articles/microframeworks1-spring-boot
Internal
Overview
Spring Boot is an extension of the Spring Framework that offer several productivity enhancements, such as autoconfiguration, starter dependencies. Spring Boot aims at simplifying the Spring development model. Spring Boot applications tend to bring everything they need with them - like Tomcat - and don't need to be deployed to some application server.