Skip to content

Commit 61a84a4

Browse files
committed
Polish asciidoctor links
Update `<<..>>` links to include the page.
1 parent 143b820 commit 61a84a4

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/anchor-rewrite.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ using-boot-devtools-customizing-classload=using.devtools.restart.customizing-the
7474
using-boot-devtools-known-restart-limitations=using.devtools.restart.limitations
7575
using-boot-devtools-livereload=using.devtools.livereload
7676
using-boot-devtools-globalsettings=using.devtools.globalsettings
77+
using-spring-boot-restart-vs-reload=using.devtools.restart.restart-vs-reload
78+
7779
configuring-file-system-watcher=using.devtools.globalsettings.configuring-file-system-watcher
7880
using-boot-devtools-remote=using.devtools.remote-applications
7981
running-remote-client-application=using.devtools.remote-applications.client

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Otherwise, the method is invoked, and the cache is updated before returning the
2222
CAUTION: You can also use the standard JSR-107 (JCache) annotations (such as `@CacheResult`) transparently.
2323
However, we strongly advise you to not mix and match the Spring Cache and JCache annotations.
2424

25-
If you do not add any specific cache library, Spring Boot auto-configures a <<io.caching.provider.simple,simple provider>> that uses concurrent maps in memory.
25+
If you do not add any specific cache library, Spring Boot auto-configures a <<io#io.caching.provider.simple,simple provider>> that uses concurrent maps in memory.
2626
When a cache is required (such as `piDecimals` in the preceding example), this provider creates it for you.
2727
The simple provider is not really recommended for production usage, but it is great for getting started and making sure that you understand the features.
2828
When you have made up your mind about the cache provider to use, please make sure to read its documentation to figure out how to configure the caches that your application uses.
@@ -39,18 +39,18 @@ The cache abstraction does not provide an actual store and relies on abstraction
3939

4040
If you have not defined a bean of type `CacheManager` or a `CacheResolver` named `cacheResolver` (see {spring-framework-api}/cache/annotation/CachingConfigurer.html[`CachingConfigurer`]), Spring Boot tries to detect the following providers (in the indicated order):
4141

42-
. <<io.caching.provider.generic,Generic>>
43-
. <<io.caching.provider.jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast, Infinispan, and others)
44-
. <<io.caching.provider.ehcache2,EhCache 2.x>>
45-
. <<io.caching.provider.hazelcast,Hazelcast>>
46-
. <<io.caching.provider.infinispan,Infinispan>>
47-
. <<io.caching.provider.couchbase,Couchbase>>
48-
. <<io.caching.provider.redis,Redis>>
49-
. <<io.caching.provider.caffeine,Caffeine>>
50-
. <<io.caching.provider.simple,Simple>>
42+
. <<io#io.caching.provider.generic,Generic>>
43+
. <<io#io.caching.provider.jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast, Infinispan, and others)
44+
. <<io#io.caching.provider.ehcache2,EhCache 2.x>>
45+
. <<io#io.caching.provider.hazelcast,Hazelcast>>
46+
. <<io#io.caching.provider.infinispan,Infinispan>>
47+
. <<io#io.caching.provider.couchbase,Couchbase>>
48+
. <<io#io.caching.provider.redis,Redis>>
49+
. <<io#io.caching.provider.caffeine,Caffeine>>
50+
. <<io#io.caching.provider.simple,Simple>>
5151

5252
TIP: It is also possible to _force_ a particular cache provider by setting the configprop:spring.cache.type[] property.
53-
Use this property if you need to <<io.caching.provider.none,disable caching altogether>> in certain environments (such as tests).
53+
Use this property if you need to <<io#io.caching.provider.none,disable caching altogether>> in certain environments (such as tests).
5454

5555
TIP: Use the `spring-boot-starter-cache` "`Starter`" to quickly add basic caching dependencies.
5656
The starter brings in `spring-context-support`.

spring-boot-project/spring-boot-docs/src/docs/asciidoc/using/devtools.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ NOTE: DevTools needs to customize the `ResourceLoader` used by the `ApplicationC
9595
If your application provides one already, it is going to be wrapped.
9696
Direct override of the `getResource` method on the `ApplicationContext` is not supported.
9797

98-
[[using-spring-boot-restart-vs-reload]]
98+
[[using.devtools.restart.restart-vs-reload]]
9999
.Restart vs Reload
100100
****
101101
The restart technology provided by Spring Boot works by using two classloaders.
@@ -212,7 +212,7 @@ For IntelliJ IDEA, you can follow the https://www.jetbrains.com/help/idea/spring
212212

213213
[[using.devtools.restart.customizing-the-classload]]
214214
==== Customizing the Restart Classloader
215-
As described earlier in the <<using-spring-boot-restart-vs-reload>> section, restart functionality is implemented by using two classloaders.
215+
As described earlier in the <<using#using.devtools.restart.restart-vs-reload>> section, restart functionality is implemented by using two classloaders.
216216
For most applications, this approach works well.
217217
However, it can sometimes cause classloading issues.
218218

spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/servlet.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ JSPs are not supported when using an executable jar.
631631

632632
* Undertow does not support JSPs.
633633

634-
* Creating a custom `error.jsp` page does not override the default view for <<web.servlet.spring-mvc.error-handling,error handling>>.
635-
<<web.servlet.spring-mvc.error-handling.error-pages,Custom error pages>> should be used instead.
634+
* Creating a custom `error.jsp` page does not override the default view for <<web#web.servlet.spring-mvc.error-handling,error handling>>.
635+
<<web#web.servlet.spring-mvc.error-handling.error-pages,Custom error pages>> should be used instead.
636636

637637

0 commit comments

Comments
 (0)