向实体添加@Cachable 无效
Posted
技术标签:
【中文标题】向实体添加@Cachable 无效【英文标题】:Adding @Cachable to entities has no effect 【发布时间】:2021-02-05 12:55:02 【问题描述】:我想缓存一些 JPA 实体以提高性能。因此,我为我的 spring-boot 应用程序设置了缓存,并将 javax.persistence.Cachable 注释添加到实体中。
@Entity
@Cacheable
public class Customer
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String firstName;
private String lastName;
这无济于事。如果我查看应用程序启动日志并保存和检索实体,我可以看到没有为实体配置缓存,也没有从缓存中写入或读取任何内容。
但是,如果我将 @Cacheable
更改为 @org.hibernate.annotations.Cache(usage = CacheConcurrencyStrategy.READ_WRITE)
,缓存就会开始按预期工作。
由于我想坚持使用标准 JPA 注释,所以问题是缺少什么才能使 @Cacheable
正常工作?
这是我的配置文件:
application.properties
spring.jpa.properties.hibernate.cache.use_second_level_cache=true
spring.jpa.properties.hibernate.cache.region.factory_class=jcache
spring.jpa.properties.hibernate.javax.cache.provider=org.ehcache.jsr107.EhcacheCachingProvider
logging.level.org.hibernate.cache=DEBUG
logging.level.org.ehcache=DEBUG
logging.level.org.hibernate.event.internal.DefaultLoadEventListener=TRACE
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
</parent>
<groupId>com.example</groupId>
<artifactId>accessing-data-jpa</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>accessing-data-jpa</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jcache</artifactId>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache-transactions</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
【问题讨论】:
【参考方案1】:根据 JPA 2.0 规范,如果您想使用 @Cacheable
注释选择性地缓存实体,您应该指定“共享缓存模式”。
spring.jpa.properties.javax.persistence.sharedCache.mode=ALL
【讨论】:
这确实有帮助。但是我选择了 ENABLE_SELECTIVE 而不是 ALL。 ALL 表示缓存所有内容,而不考虑任何注释。【参考方案2】:除了缓存模式和注释之外,还有一些属性/提示可以控制实体的缓存。
JPA 开发者指南中有一个缓存部分: https://cmobilecom.com/docs/jpa/latest/devguide/index.html
【讨论】:
以上是关于向实体添加@Cachable 无效的主要内容,如果未能解决你的问题,请参考以下文章