最近,我对JSR107缓存注释以及JSR107的实现是否提供它们有一些疑问。
可以将缓存注释添加到Java类中,并将其作为方法调用缓存操作。 例如,下面是带注释的BlogManager。
@CacheDefaults(cacheName = "blgMngr")
public class BlogManagerImpl implements BlogManager {private static Map<String, Blog> map = new HashMap<String, Blog>();@CacheResult
public Blog getEntryCached(String title) {
return map.get(title);
}public Blog getEntryRaw(String title) {
return map.get(title);
}/**
* @see manager.BlogManager#clearEntryFromCache(java.lang.String)
*/
@CacheRemove
public void clearEntryFromCache(String title) {
}public void clearEntry(String title) {
map.put(title, null);
}@CacheRemoveAll
public void clearCache() {
}public void createEntry(Blog blog) {
map.put(blog.getTitle(), blog);
}@CacheResult
public Blog getEntryCached(String randomArg, @CacheKey String title,
String randomArg2) {
return map.get(title);
}}
尽管在JSR107中定义了高速缓存批注,但并不意味着由诸如Hazelcast之类的CachingProvider提供。 相反,它们必须由依赖项注入容器提供:Spring,Guice,CDI(对于Java EE)。 EE将会在8年后实现。 Spring支持在4.1中提供,现在可供开发人员在快照中使用。 有关如何使用它的信息,请参见https://spring.io/blog/2014/04/14/cache-abstraction-jcache-jsr-107-annotations-support 。
尽管DI需要花费一些时间来添加支持,但在JSR107 RI中,我们为每个DI编写了一个模块。 可以将该代码添加到现有的DI容器中,并启用缓存注释处理。 参见https://github.com/jsr107/RI/tree/master/cache-annotations-ri 。
翻译自: https://www.javacodegeeks.com/2014/04/how-jsr107-caching-annotations-are-meant-to-be-used.html