Fix package of AutoConfigureCache in caching documentation

See gh-51111

Signed-off-by: wantaek <wantaekchoi@gmail.com>
This commit is contained in:
wantaek
2026-07-24 08:48:12 +02:00
committed by Stéphane Nicoll
parent 8164b0a651
commit cb6e22eb46
@@ -284,7 +284,7 @@ Doing so makes sure that caching is not required by slice tests.
For tests that enable a full context, such as javadoc:org.springframework.boot.test.context.SpringBootTest[format=annotation], an explicit configuration overriding the regular configuration is required.
If caching is auto-configured, more options are available.
Tests can be annotated with javadoc:org.springframework.boot.test.autoconfigure.core.AutoConfigureCache[format=annotation] to replace the auto-configured javadoc:org.springframework.cache.CacheManager[] by a no-op implementation.
Tests can be annotated with javadoc:org.springframework.boot.cache.test.autoconfigure.AutoConfigureCache[format=annotation] to replace the auto-configured javadoc:org.springframework.cache.CacheManager[] by a no-op implementation.
include-code::MyIntegrationTests[]