Annotation Interface CacheNamespaceRef


@Documented @Retention(RUNTIME) @Target(TYPE) public @interface CacheNamespaceRef
The annotation that reference a cache.

If you use this annotation, should be specified either value() or name() attribute.

How to use:

 @CacheNamespaceRef(UserMapper.class)
 public interface AdminUserMapper {
   // ...
 }
 
Author:
Clinton Begin, Kazuki Shimizu