Spring Boot: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 21: Line 21:
* [[Spring Boot Property Injection]]
* [[Spring Boot Property Injection]]
* [[Spring_Boot_Property_Injection#Configuration_Property_Metadata|Spring Boot Configuration Property Metadata]]
* [[Spring_Boot_Property_Injection#Configuration_Property_Metadata|Spring Boot Configuration Property Metadata]]
* [[Executing Arbitrary Main Class from a Spring Boot JAR]]


=Projects=
=Projects=

Revision as of 18:16, 20 December 2018

External

Internal

Overview

Spring Boot is an extension of the Spring Framework that offer several productivity enhancements, such as automatic Spring project generation, autoconfiguration, starter dependencies, runtime insight with Actuator, flexible specification of environment properties, command-line support. 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. These executable JARs are knowns as "fat" JARs.

Subjects

Projects