|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2018 the original author or authors. |
| 2 | + * Copyright 2002-2019 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
@@ -313,9 +313,9 @@ else if (StringUtils.hasText(operation.getCacheManager())) {
|
313 | 313 | * @param expectedType type for the bean
|
314 | 314 | * @return the bean matching that name
|
315 | 315 | * @throws org.springframework.beans.factory.NoSuchBeanDefinitionException if such bean does not exist
|
316 |
| - * @see CacheOperation#keyGenerator |
317 |
| - * @see CacheOperation#cacheManager |
318 |
| - * @see CacheOperation#cacheResolver |
| 316 | + * @see CacheOperation#getKeyGenerator() |
| 317 | + * @see CacheOperation#getCacheManager() |
| 318 | + * @see CacheOperation#getCacheResolver() |
319 | 319 | */
|
320 | 320 | protected <T> T getBean(String beanName, Class<T> expectedType) {
|
321 | 321 | if (this.beanFactory == null) {
|
@@ -353,8 +353,8 @@ protected Object execute(CacheOperationInvoker invoker, Object target, Method me
|
353 | 353 |
|
354 | 354 | /**
|
355 | 355 | * Execute the underlying operation (typically in case of cache miss) and return
|
356 |
| - * the result of the invocation. If an exception occurs it will be wrapped in |
357 |
| - * a {@link CacheOperationInvoker.ThrowableWrapper}: the exception can be handled |
| 356 | + * the result of the invocation. If an exception occurs it will be wrapped in a |
| 357 | + * {@link CacheOperationInvoker.ThrowableWrapper}: the exception can be handled |
358 | 358 | * or modified but it <em>must</em> be wrapped in a
|
359 | 359 | * {@link CacheOperationInvoker.ThrowableWrapper} as well.
|
360 | 360 | * @param invoker the invoker handling the operation being cached
|
|
0 commit comments