Spring Boot: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 3: Line 3:
* Spring Boot Reference Guide https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/
* Spring Boot Reference Guide https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/
* InfoQ Exploring Micro-frameworks: Spring Boot https://www.infoq.com/articles/microframeworks1-spring-boot
* InfoQ Exploring Micro-frameworks: Spring Boot https://www.infoq.com/articles/microframeworks1-spring-boot
* Common Application Properties https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html


=Internal=
=Internal=
Line 15: Line 16:


* [[Spring Boot Concepts]]
* [[Spring Boot Concepts]]
** [[Spring_Boot_Testing_Concepts#Overview|Spring Boot Testing Concepts]]
* [[Simplest SpringBoot Project Example]]
* [[Simplest SpringBoot Project Example]]
* [[Writing a REST Service with Spring Boot]]
* [[Console Application with Spring Boot|Console (command-line) Application with Spring Boot]]
* [[Console Application with Spring Boot|Console (command-line) Application with Spring Boot]]
* [[Enabling Non-Spring Libraries to Access Spring Boot Components]]
* [[Enabling Non-Spring Libraries to Access Spring Boot Components]]
* [[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 an Arbitrary Main Class from a Spring Boot JAR]]
* [[Creating Container Images for Spring Boot Applications#Overview|Creating Container Images for Spring Boot Applications]]


=Projects=
=Projects=

Latest revision as of 00:47, 7 February 2022

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