AOP-based solution for declarative caching demarcation using JSR-107 annotations.

Strongly based on the infrastructure in org.springframework.cache.interceptor that deals with Spring's caching annotations.

Builds on the AOP infrastructure in org.springframework.aop.framework. Any POJO can be cache-advised with Spring.

/** * AOP-based solution for declarative caching demarcation using JSR-107 annotations. * * <p>Strongly based on the infrastructure in org.springframework.cache.interceptor * that deals with Spring's caching annotations. * * <p>Builds on the AOP infrastructure in org.springframework.aop.framework. * Any POJO can be cache-advised with Spring. */
@NonNullApi @NonNullFields package org.springframework.cache.jcache.interceptor; import org.springframework.lang.NonNullApi; import org.springframework.lang.NonNullFields;