我添加了以下注释以启用对我的 EJB3 实体之一的缓存,以使用 ehCache 测试缓存,其中我使用 Hibernate 作为持久性提供程序:
....
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
@Entity
@Table(name = "F")
@Cache(usage=CacheConcurrencyStrategy.READ_WRITE)
@NamedQueries({ @NamedQuery(name = "F.findAll", query = "SELECT f FROM F f")})
public class F implements Serializable {
.....
}
我将以下内容添加到 persistence.xml:
<property name="hibernate.cache.provider_class" value="org.hibernate.cache.EhCacheProvider"/>
<property name="hibernate.cache.provider_configuration_file_resource_path" value="/ehcache.xml"/>
<property name="hibernate.cache.use_second_level_cache" value="true"/>
当我尝试编译时,出现以下错误:
/persistence/F.class):警告:在“org.hibernate.annotations.Cache”类型中找不到注释方法“usage()”:找不到 org.hibernate.annotations.Cache 的类文件编译器发生异常(1.6.0_16)。在检查 Bug Parade 是否有重复项后,请在 Java 开发人员连接 ( http://java.sun.com/webapps/bugreport ) 提交一个错误。在报告中包含您的程序和以下诊断。谢谢你。com.sun.tools.javac.code.Symbol$CompletionFailure:找不到 org.hibernate.annotations.CacheConcurrencyStrategy 的类文件
谁能在这里帮助我,让我知道我现在需要做什么或做错了什么?