This commit extract spring-related links and recurring external links into asciidoctor attributes to be used by the Antora toolchain. It notably homogenizes links to: - IETF RFCs - Java Community Process JSRs - the Java API Documentation (on the Java 17 version) - Kotlin documentations (on the Kotlinlang.org version) - the Spring Boot reference guide (on the `html` version) This commit also reworks most link attributes to follow a Project-Category-Misc syntax. For example, `spring-boot-docs` rather than `docs-spring-boot`. Finally, it makes an effort to clean up remainders from the previous documentation toolchain, namely the `docs/asciidoc` folder and `modules/ROOT/pages/attributes.adoc` file. Closes gh-26864 Closes gh-31619
16 lines
770 B
Plaintext
16 lines
770 B
Plaintext
[[mvc-http2]]
|
|
= HTTP/2
|
|
:page-section-summary-toc: 1
|
|
|
|
[.small]#xref:web/webflux/http2.adoc[See equivalent in the Reactive stack]#
|
|
|
|
Servlet 4 containers are required to support HTTP/2, and Spring Framework 5 is compatible
|
|
with Servlet API 4. From a programming model perspective, there is nothing specific that
|
|
applications need to do. However, there are considerations related to server configuration.
|
|
For more details, see the
|
|
{spring-framework-wiki}/HTTP-2-support[HTTP/2 wiki page].
|
|
|
|
The Servlet API does expose one construct related to HTTP/2. You can use the
|
|
`jakarta.servlet.http.PushBuilder` to proactively push resources to clients, and it
|
|
is supported as a xref:web/webmvc/mvc-controller/ann-methods/arguments.adoc[method argument] to `@RequestMapping` methods.
|