Split up adoc files

Closes gh-23254
This commit is contained in:
Phillip Webb
2021-04-29 09:11:56 -07:00
parent bb8188b681
commit 33c6c600a9
150 changed files with 18081 additions and 18136 deletions

View File

@@ -0,0 +1,11 @@
[[documentation.about]]
== About the Documentation
The Spring Boot reference guide is available as:
* {spring-boot-docs}/html/[Multi-page HTML]
* {spring-boot-docs}/htmlsingle/[Single page HTML]
* {spring-boot-docs}/pdf/spring-boot-reference.pdf[PDF]
The latest copy is available at {spring-boot-current-docs}.
Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.

View File

@@ -0,0 +1,7 @@
[[documentation.actuator]]
== Moving to Production
When you are ready to push your Spring Boot application to production, we have <<actuator#actuator, some tricks>> that you might like:
* *Management endpoints:* <<actuator#actuator.endpoints, Overview>>
* *Connection options:* <<actuator#actuator.monitoring, HTTP>> | <<actuator#actuator.jmx, JMX>>
* *Monitoring:* <<actuator#actuator.metrics, Metrics>> | <<actuator#actuator.auditing, Auditing>> | <<actuator#actuator.tracing, HTTP Tracing>> | <<actuator#actuator.process-monitoring, Process>>

View File

@@ -0,0 +1,7 @@
[[documentation.advanced]]
== Advanced Topics
Finally, we have a few topics for more advanced users:
* *Spring Boot Applications Deployment:* <<deployment#deployment.cloud, Cloud Deployment>> | <<deployment#deployment.installing.nix-services, OS Service>>
* *Build tool plugins:* <<build-tool-plugins#build-tool-plugins.maven, Maven>> | <<build-tool-plugins#build-tool-plugins.gradle, Gradle>>
* *Appendix:* <<application-properties#application-properties,Application Properties>> | <<configuration-metadata#configuration-metadata,Configuration Metadata>> | <<auto-configuration-classes#auto-configuration-classes,Auto-configuration Classes>> | <<test-auto-configuration#test-auto-configuration,Test Auto-configuration Annotations>> | <<executable-jar#executable-jar,Executable Jars>> | <<dependency-versions#dependency-versions,Dependency Versions>>

View File

@@ -0,0 +1,11 @@
[[documentation.features]]
== Learning About Spring Boot Features
Need more details about Spring Boot's core features?
<<features#features, The following content is for you>>:
* *Core Features:* <<features#features.spring-application, SpringApplication>> | <<features#features.external-config, External Configuration>> | <<features#features.profiles, Profiles>> | <<features#features.logging, Logging>>
* *Web Applications:* <<features#features.developing-web-applications.spring-mvc, MVC>> | <<features#features.developing-web-applications.embedded-container, Embedded Containers>>
* *Working with data:* <<features#features.sql, SQL>> | <<features#features.nosql, NO-SQL>>
* *Messaging:* <<features#features.messaging, Overview>> | <<features#features.messaging.jms, JMS>>
* *Testing:* <<features#features.testing, Overview>> | <<features#features.testing.spring-boot-applications, Boot Applications>> | <<features#features.testing.utilities, Utils>>
* *Extending:* <<features#features.developing-auto-configuration, Auto-configuration>> | <<features#features.developing-auto-configuration.condition-annotations, @Conditions>>

View File

@@ -0,0 +1,7 @@
[[documentation.first-steps]]
== First Steps
If you are getting started with Spring Boot or 'Spring' in general, start with <<getting-started#getting-started, the following topics>>:
* *From scratch:* <<getting-started#getting-started.introducing-spring-boot, Overview>> | <<getting-started#getting-started.system-requirements, Requirements>> | <<getting-started#getting-started.installing, Installation>>
* *Tutorial:* <<getting-started#getting-started.first-application, Part 1>> | <<getting-started#getting-started.first-application.code, Part 2>>
* *Running your example:* <<getting-started#getting-started.first-application.run, Part 1>> | <<getting-started#getting-started.first-application.executable-jar, Part 2>>

View File

@@ -0,0 +1,16 @@
[[documentation.getting-help]]
== Getting Help
If you have trouble with Spring Boot, we would like to help.
* Try the <<howto#howto, How-to documents>>.
They provide solutions to the most common questions.
* Learn the Spring basics.
Spring Boot builds on many other Spring projects.
Check the https://spring.io[spring.io] web-site for a wealth of reference documentation.
If you are starting out with Spring, try one of the https://spring.io/guides[guides].
* Ask a question.
We monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-boot[`spring-boot`].
* Report bugs with Spring Boot at https://github.com/spring-projects/spring-boot/issues.
NOTE: All of Spring Boot is open source, including the documentation.
If you find problems with the docs or if you want to improve them, please {spring-boot-code}[get involved].

View File

@@ -0,0 +1,9 @@
[[documentation.upgrading]]
== Upgrading From an Earlier Version
Instructions for how to upgrade from earlier versions of Spring Boot are provided on the project {github-wiki}[wiki].
Follow the links in the {github-wiki}#release-notes[release notes] section to find the version that you want to upgrade to.
Upgrading instructions are always the first item in the release notes.
If you are more than one release behind, please make sure that you also review the release notes of the versions that you jumped.
You should always ensure that you are running a {github-wiki}/Supported-Versions[supported version] of Spring Boot.

View File

@@ -0,0 +1,9 @@
[[documentation.using]]
== Working with Spring Boot
Ready to actually start using Spring Boot? <<using#using, We have you covered>>:
* *Build systems:* <<using#using.build-systems.maven, Maven>> | <<using#using.build-systems.gradle, Gradle>> | <<using#using.build-systems.ant, Ant>> | <<using#using.build-systems.starters, Starters>>
* *Best practices:* <<using#using.structuring-your-code, Code Structure>> | <<using#using.configuration-classes, @Configuration>> | <<using#using.auto-configuration, @EnableAutoConfiguration>> | <<using#using.spring-beans-and-dependency-injection, Beans and Dependency Injection>>
* *Running your code:* <<using#using.running-your-application.from-an-ide, IDE>> | <<using#using.running-your-application.as-a-packaged-application, Packaged>> | <<using#using.running-your-application.with-the-maven-plugin, Maven>> | <<using#using.running-your-application.with-the-gradle-plugin, Gradle>>
* *Packaging your app:* <<using#using.packaging-for-production, Production jars>>
* *Spring Boot CLI:* <<cli#cli, Using the CLI>>