@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface CacheNamespaceRef
If you use this annotation, should be specified either value()
or name()
attribute.
How to use:
@CacheNamespaceRef(UserMapper.class) public interface AdminUserMapper { // ... }
public abstract Class<?> value
public abstract String name
Copyright © 2009–2021 MyBatis.org. All rights reserved.