为什么在 hibernate 文档中,我会在实体上看到带有两个注释的引用以进行缓存?
例如:http : //docs.jboss.org/hibernate/orm/4.2/manual/en-US/html_single/#performance-cache-mapping
@Entity
@Cacheable
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class Forest { ... }
Run Code Online (Sandbox Code Playgroud)
@Cacheable 和 @Cache 注释都需要吗?