Getting Started
Reference Documentation
For further reference, please consider the following sections:
Official Apache Maven documentation
Spring Boot Maven Plugin Reference Guide
Create an OCI image
Spring Web
Guides
The following guides illustrate how to use some features concretely:
Building a RESTful Web Service
Serving Web Content with Spring MVC
Building REST services with Spring
4.7. Developing Web Applications
Spring Boot is well suited for web application development. You can create a self-contained HTTP server by using embedded Tomcat, Jetty, Undertow, or Netty. Most web applications use the spring-boot-starter-web module to get up and running quickly. You can also choose to build reactive web applications by using the spring-boot-starter-webflux module.
If you have not yet developed a Spring Boot web application, you can follow the “Hello World!” example in the Gettin