Skip to content

Commit 2c9945e

Browse files
committed
Merge pull request #27761 from dreis2211
* pr/27761: Fix broken links in docs Closes gh-27761
2 parents 8fd9eb7 + 7c8ccfc commit 2c9945e

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
. <<caching#io.caching.provider.generic,Generic>>
43-
. <<caching#io.caching.provider.jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast, Infinispan, and others)
44-
. <<caching#io.caching.provider.ehcache2,EhCache 2.x>>
45-
. <<caching#io.caching.provider.hazelcast,Hazelcast>>
46-
. <<caching#io.caching.provider.infinispan,Infinispan>>
47-
. <<caching#io.caching.provider.couchbase,Couchbase>>
48-
. <<caching#io.caching.provider.redis,Redis>>
49-
. <<caching#io.caching.provider.caffeine,Caffeine>>
50-
. <<caching#io.caching.provider.simple,Simple>>
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>>
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 <<caching#io.caching.provider.none,disable caching altogether>> in certain environment (such as tests).
53+
Use this property if you need to <<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/web/servlet.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ A "fixed" strategy adds a static version string in the URL without changing the
181181

182182
With this configuration, JavaScript modules located under `"/js/lib/"` use a fixed versioning strategy (`"/v12/js/lib/mymodule.js"`), while other resources still use the content one (`<link href="/css/spring-2a2d595e6ed9a0b24f027f2b63b134d6.css"/>`).
183183

184-
See {spring-boot-autoconfigure-module-code}/web/ResourceProperties.java[`ResourceProperties`] for more supported options.
184+
See {spring-boot-autoconfigure-module-code}/web/WebProperties.java[`WebProperties.Resources`] for more supported options.
185185

186186
[TIP]
187187
====
@@ -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 <<servlet#web.servlet.spring-mvc.error-handling,error handling>>.
635-
<<servlet#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.servlet.spring-mvc.error-handling,error handling>>.
635+
<<web.servlet.spring-mvc.error-handling.error-pages,Custom error pages>> should be used instead.
636636

637637

0 commit comments

Comments
 (0)