fix: correct invalid usage of @CacheConfig
Signed-off-by: Junnyjun <chbe5082@naver.com>
This commit is contained in:
parent
a2b90d9e9a
commit
4ea06289c1
|
@ -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"]
|
[source,java,indent=0,subs="verbatim,quotes"]
|
||||||
----
|
----
|
||||||
@CacheConfig("books") <1>
|
@CacheConfig(cacheNames = "books") <1>
|
||||||
public class BookRepositoryImpl implements BookRepository {
|
public class BookRepositoryImpl implements BookRepository {
|
||||||
|
|
||||||
@Cacheable
|
@Cacheable
|
||||||
|
|
Loading…
Reference in New Issue