Why in the hibernate docs do I see references with both annotations on entities for caching?
eg: 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 { ... } Is both the @Cacheable and the @Cache annotations required?