fix: correct invalid usage of @CacheConfig

Signed-off-by: Junnyjun <chbe5082@naver.com>
This commit is contained in:
Junnyland 2025-06-22 22:28:49 +09:00 committed by Junnyjun
parent a2b90d9e9a
commit 4ea06289c1
1 changed files with 1 additions and 1 deletions

View File

@ -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