From 4ea06289c11ab9026cfb1475f2e7397449268be1 Mon Sep 17 00:00:00 2001 From: Junnyland <72375574+Junnyjun@users.noreply.github.com> Date: Sun, 22 Jun 2025 22:28:49 +0900 Subject: [PATCH] fix: correct invalid usage of @CacheConfig Signed-off-by: Junnyjun --- .../modules/ROOT/pages/integration/cache/annotations.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/integration/cache/annotations.adoc b/framework-docs/modules/ROOT/pages/integration/cache/annotations.adoc index 61ecce6957..37a5889475 100644 --- a/framework-docs/modules/ROOT/pages/integration/cache/annotations.adoc +++ b/framework-docs/modules/ROOT/pages/integration/cache/annotations.adoc @@ -485,7 +485,7 @@ comes into play. The following examples uses `@CacheConfig` to set the name of t [source,java,indent=0,subs="verbatim,quotes"] ---- - @CacheConfig("books") <1> + @CacheConfig(cacheNames = "books") <1> public class BookRepositoryImpl implements BookRepository { @Cacheable