|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packageorg.springframework.cache.interceptor
as colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.
Set the cache operation attribute source which is used to find cache attributes. This should usually be identical to the source reference set on the cache interceptor itself.@see CacheInterceptor#setCacheAttributeSource
Interface used by CacheInterceptor. ImplementationsClass CacheOperationSource, Collection<CacheOperation> getCacheOperations(Method, Class<?>)knowknow how tosourcesource cache operation attributes, whether from configuration,metadata attributesatat source level, oranywhere elseelsewhere. @author Costin Leau @since 3.1
Return the collection of cache operations for this method,or {@code null} if the method contains no"cacheable"annotations. @param method the method to introspect @param targetClass the target class (may be {@code null},in whichcasecase the declaring class of the method must be used) @return all cache operations for this method, or {@code null}ifif none found
Proxy factory bean for simplified declarative caching handling. This is a convenient alternative to a standard AOP org.springframework.aop.framework.ProxyFactoryBean with a separateCachingInterceptorCacheInterceptor definition.This class is designed to facilitate declarative cache demarcation: namely, wrapping a singleton target object with a caching proxy, proxying all the interfaces that the target implements. Exists primarily for third-party framework integration. Users should favor the {@code cache:} XML namespace @Cacheable annotation. See the declarative annotation-based caching section of the Spring reference documentation for more information. @author Costin Leau @see org.springframework.aop.framework.ProxyFactoryBean @see
CachingInterceptorCacheInterceptor
Set a name/attribute map, consisting of method names (e.g. "myMethod") and CacheOperation instances (or Strings to be converted to CacheOperation instances). @seeCacheOperation @see CacheOperationEditorCacheOperation