Fix javadoc in couchbase cache. (#1985)

Closes #1984.
This commit is contained in:
Michael Reiche
2024-10-10 11:06:17 -07:00
committed by mikereiche
parent cfcd747e00
commit cdfb69bcaf
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ import org.springframework.util.ReflectionUtils;
/**
* Couchbase-backed Cache Methods that take a Class return non-wrapped objects - cache-miss cannot be distinguished from
* cached null - this is what AbstractValueAdaptingCache does Methods that do not take a Class return wrapped objects -
* the wrapper is null for cache-miss - the exception is T get(final Object key, final Callable<T> valueLoader), which
* the wrapper is null for cache-miss - the exception is T get(final Object key, final Callable&lt;T&gt; valueLoader), which
* does not return a wrapper because if there is a cache-miss, it gets the value from valueLoader (and caches it). There
* are anomalies with get(key, ValueLoader) - which returns non-wrapped object.
*/

View File

@@ -62,7 +62,7 @@ public class CouchbaseCacheConfiguration {
/**
* Registers default cache key converters. The following converters get registered:
* <ul>
* <li>{@link String} to {@link byte byte[]} using UTF-8 encoding.</li>
* <li>{@link String} to byte using UTF-8 encoding.</li>
* <li>{@link SimpleKey} to {@link String}</li>
* </ul>
*