Remove includes

This commit is contained in:
Rob Winch
2023-04-19 10:26:17 -05:00
committed by rstoyanchev
parent 5aecfb1878
commit 6b341ddf19
14 changed files with 3 additions and 67 deletions

View File

@@ -1,7 +1,5 @@
[[appendix]]
= Appendix
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the reference documentation covers topics that apply to multiple modules
within the core Spring Framework.

View File

@@ -1,7 +1,5 @@
[[spring-core]]
= Core Technologies
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the reference documentation covers all the technologies that are
absolutely integral to the Spring Framework.
@@ -20,24 +18,13 @@ is also provided.
AOT processing can be used to optimize your application ahead-of-time. It is typically
used for native image deployment using GraalVM.
include::core/beans.adoc[leveloffset=+1]
include::core/resources.adoc[leveloffset=+1]
include::core/validation.adoc[leveloffset=+1]
include::core/expressions.adoc[leveloffset=+1]
include::core/aop.adoc[leveloffset=+1]
include::core/aop-api.adoc[leveloffset=+1]
include::core/null-safety.adoc[leveloffset=+1]
include::core/databuffer-codec.adoc[leveloffset=+1]
include::core/spring-jcl.adoc[leveloffset=+1]
include::core/aot.adoc[leveloffset=+1]
include::core/appendix.adoc[leveloffset=+1]

View File

@@ -1,7 +1,5 @@
[[spring-data-tier]]
= Data Access
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the reference documentation is concerned with data access and the
interaction between the data access layer and the business or service layer.

View File

@@ -1,7 +1,6 @@
:noheader:
[[spring-framework-documentation]]
= Spring Framework Documentation
include::attributes.adoc[]
[horizontal]
<<overview.adoc#overview, Overview>> :: History, Design Philosophy, Feedback,

View File

@@ -1,23 +1,13 @@
[[spring-integration]]
= Integration
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the reference documentation covers Spring Framework's integration with
a number of technologies.
include::integration/rest-clients.adoc[leveloffset=+1]
include::integration/jms.adoc[leveloffset=+1]
include::integration/jmx.adoc[leveloffset=+1]
include::integration/email.adoc[leveloffset=+1]
include::integration/scheduling.adoc[leveloffset=+1]
include::integration/cache.adoc[leveloffset=+1]
include::integration/observability.adoc[leveloffset=+1]
include::integration/appendix.adoc[leveloffset=+1]

View File

@@ -1,12 +1,7 @@
[[languages]]
= Language Support
include::attributes.adoc[]
include::page-layout.adoc[]
include::languages/kotlin.adoc[leveloffset=+1]
include::languages/groovy.adoc[leveloffset=+1]
include::languages/dynamic.adoc[leveloffset=+1]

View File

@@ -1,6 +1,5 @@
[[overview]]
= Spring Framework Overview
include::attributes.adoc[]
:docinfo1:
Spring makes it easy to create Java enterprise applications. It provides everything you

View File

@@ -1,7 +1,5 @@
[[rsocket]]
= RSocket
include::attributes.adoc[]
include::page-layout.adoc[]
This section describes Spring Framework's support for the RSocket protocol.

View File

@@ -1,7 +1,5 @@
[[testing]]
= Testing
include::attributes.adoc[]
include::page-layout.adoc[]
This chapter covers Spring's support for integration testing and best practices for unit
testing. The Spring team advocates test-driven development (TDD). The Spring team has
@@ -11,20 +9,11 @@ constructors on classes makes them easier to wire together in a test without hav
set up service locator registries and similar structures).
include::testing/introduction.adoc[leveloffset=+1]
include::testing/unit.adoc[leveloffset=+1]
include::testing/integration.adoc[leveloffset=+1]
include::testing/support-jdbc.adoc[leveloffset=+1]
include::testing/testcontext-framework.adoc[leveloffset=+1]
include::testing/webtestclient.adoc[leveloffset=+1]
include::testing/spring-mvc-test-framework.adoc[leveloffset=+1]
include::testing/spring-mvc-test-client.adoc[leveloffset=+1]
include::testing/appendix.adoc[leveloffset=+1]

View File

@@ -1,6 +1,4 @@
[[testing.appendix]]
= Appendix
include::annotations.adoc[leveloffset=+1]
include::resources.adoc[leveloffset=+1]

View File

@@ -1,7 +1,5 @@
[[spring-web-reactive]]
= Web on Reactive Stack
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the documentation covers support for reactive-stack web applications built
on a https://www.reactive-streams.org/[Reactive Streams] API to run on non-blocking
@@ -11,9 +9,7 @@ the reactive <<webflux-client, `WebClient`>>, support for <<webflux-test, testin
and <<webflux-reactive-libraries, reactive libraries>>. For Servlet-stack web applications,
see <<web.adoc#spring-web, Web on Servlet Stack>>.
include::web/webflux.adoc[leveloffset=+1]
include::web/webflux-webclient.adoc[leveloffset=+1]
[[webflux-http-interface-client]]
@@ -27,7 +23,6 @@ flexibility for to choose an API style such as synchronous or reactive.
See <<integration.adoc#rest-http-interface, REST Endpoints>> for details.
include::web/webflux-websocket.adoc[leveloffset=+1]
@@ -44,7 +39,6 @@ discussion of mock objects.
response objects to provide support for testing WebFlux applications without an HTTP
server. You can use the `WebTestClient` for end-to-end integration tests, too.
include::rsocket.adoc[leveloffset=+1]

View File

@@ -1,19 +1,12 @@
[[spring-web]]
= Web on Servlet Stack
include::attributes.adoc[]
include::page-layout.adoc[]
This part of the documentation covers support for Servlet-stack web applications built on the
Servlet API and deployed to Servlet containers. Individual chapters include <<mvc, Spring MVC>>,
<<mvc-view,View Technologies>>, <<mvc-cors,CORS Support>>, and <<websocket, WebSocket Support>>.
For reactive-stack web applications, see <<web-reactive.adoc#spring-web-reactive, Web on Reactive Stack>>.
include::web/webmvc.adoc[leveloffset=+1]
include::web/webmvc-client.adoc[leveloffset=+1]
include::web/webmvc-test.adoc[leveloffset=+1]
include::web/websocket.adoc[leveloffset=+1]
include::web/integration.adoc[leveloffset=+1]

View File

@@ -5,7 +5,6 @@
This part of the reference documentation covers support for reactive-stack WebSocket
messaging.
include::websocket-intro.adoc[leveloffset=+1]

View File

@@ -6,7 +6,6 @@ This part of the reference documentation covers support for Servlet stack, WebSo
messaging that includes raw WebSocket interactions, WebSocket emulation through SockJS, and
publish-subscribe messaging through STOMP as a sub-protocol over WebSocket.
include::websocket-intro.adoc[leveloffset=+1]