Spring Boot: Difference between revisions
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
* [[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]] | * [[Executing an Arbitrary Main Class from a Spring Boot JAR]] | ||
* [[Writing a REST Service with Spring]] | * [[Writing a REST Service with Spring Boot]] | ||
=Projects= | =Projects= |
Revision as of 23:26, 2 October 2021
External
- https://spring.io/projects/spring-boot
- 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
- Common Application Properties https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
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
- Spring Boot Concepts
- Simplest SpringBoot Project Example
- Console (command-line) Application with Spring Boot
- Enabling Non-Spring Libraries to Access Spring Boot Components
- Spring Boot Property Injection
- Spring Boot Configuration Property Metadata
- Executing an Arbitrary Main Class from a Spring Boot JAR
- Writing a REST Service with Spring Boot