Skip to content

Commit ac00df7

Browse files
committed
Add what's next to new sections
This commit also moves hazelcast from core features to IO Closes gh-27132
1 parent 7e257dc commit ac00df7

File tree

16 files changed

+50
-9
lines changed

16 files changed

+50
-9
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/container-images.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ include::container-images/efficient-images.adoc[]
99
include::container-images/dockerfiles.adoc[]
1010

1111
include::container-images/cloud-native-buildpacks.adoc[]
12+
13+
include::container-images/whats-next.adoc[]
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[[container-images.whats-next]]
2+
== What to Read Next
3+
Once you've learned how to build efficient container images, you can read about <<deployment#deployment.cloud.kubernetes, deploying applications to a cloud platform>>, such as Kubernetes.
4+
5+

spring-boot-project/spring-boot-docs/src/docs/asciidoc/data.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ Spring Boot integrates with a number of data technologies, both SQL and NoSQL.
66

77
include::data/sql.adoc[]
88

9-
include::data/nosql.adoc[]
9+
include::data/nosql.adoc[]
10+
11+
include::data/whats-next.adoc[]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[[data.whats-next]]
2+
== What to Read Next
3+
You should now have a feeling for how to use Spring Boot with various data technologies.
4+
From here, you can read about Spring Boot's support for various <<messaging#messaging, messaging technolgoies>> and how to enable them in your application.

spring-boot-project/spring-boot-docs/src/docs/asciidoc/features.adoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ include::features/internationalization.adoc[]
2222

2323
include::features/json.adoc[]
2424

25-
include::features/hazelcast.adoc[]
26-
2725
include::features/task-execution-and-scheduling.adoc[]
2826

2927
include::features/testing.adoc[]

spring-boot-project/spring-boot-docs/src/docs/asciidoc/io.adoc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ We'll also cover calling remote REST or SOAP services and sending email.
99

1010
include::io/caching.adoc[]
1111

12+
include::io/hazelcast.adoc[]
13+
1214
include::io/quartz.adoc[]
1315

14-
include::io/mail.adoc[]
16+
include::io/email.adoc[]
1517

1618
include::io/validation.adoc[]
1719

1820
include::io/rest-client.adoc[]
1921

2022
include::io/webservices.adoc[]
2123

22-
include::io/jta.adoc[]
24+
include::io/jta.adoc[]
25+
26+
include::io/whats-next.adoc[]

spring-boot-project/spring-boot-docs/src/docs/asciidoc/io/caching.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Even if the JSR-107 standard does not enforce a standardized way to define the l
9898

9999
NOTE: When a cache library offers both a native implementation and JSR-107 support, Spring Boot prefers the JSR-107 support, so that the same features are available if you switch to a different JSR-107 implementation.
100100

101-
TIP: Spring Boot has <<features#features.hazelcast,general support for Hazelcast>>.
101+
TIP: Spring Boot has <<io#io.hazelcast,general support for Hazelcast>>.
102102
If a single `HazelcastInstance` is available, it is automatically reused for the `CacheManager` as well, unless the configprop:spring.cache.jcache.config[] property is specified.
103103

104104
There are two ways to customize the underlying `javax.cache.cacheManager`:
@@ -130,7 +130,7 @@ An alternate configuration file can be provided as well, as shown in the followi
130130

131131
[[io.caching.provider.hazelcast]]
132132
==== Hazelcast
133-
Spring Boot has <<features#features.hazelcast,general support for Hazelcast>>.
133+
Spring Boot has <<io#io.hazelcast,general support for Hazelcast>>.
134134
If a `HazelcastInstance` has been auto-configured, it is automatically wrapped in a `CacheManager`.
135135

136136

spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/hazelcast.adoc renamed to spring-boot-project/spring-boot-docs/src/docs/asciidoc/io/hazelcast.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[features.hazelcast]]
1+
[[io.hazelcast]]
22
== Hazelcast
33
If https://hazelcast.com/[Hazelcast] is on the classpath and a suitable configuration is found, Spring Boot auto-configures a `HazelcastInstance` that you can inject in your application.
44

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[[io.whats-next]]
2+
== What to Read Next
3+
You should now have a good understanding of Spring Boot's <<features#features, core features>> and the various technologies that Spring Boot provides support for via auto-configuration.
4+
5+
The next few sections go into detail about deploying applications to cloud platforms.
6+
You can read about <<container-images#container-images, building container images>> in the next section or skip to the <<actuator#actuator, production-ready features>> section.

0 commit comments

Comments
 (0)