Spring Framework 5和EhCache 3.5

xmd2e60i  于 2023-05-05  发布在  Spring
关注(0)|答案(6)|浏览(190)

我尝试在基于Sping Boot 2/Spring Framework 5的Web应用程序中使用EhCache 3.5缓存功能。
我添加了EHCache依赖项:

<dependency>
        <groupId>org.ehcache</groupId>
        <artifactId>ehcache</artifactId>
        <version>3.5.0</version>
    </dependency>
    <dependency>
        <groupId>javax.cache</groupId>
        <artifactId>cache-api</artifactId>
        <version>1.0.0</version>
    </dependency>

然后在src/main/resources文件夹中创建ehcache.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"
    monitoring="autodetect" dynamicConfig="true">

    <cache name="orders" maxElementsInMemory="100" 
        eternal="false" overflowToDisk="false" 
        memoryStoreEvictionPolicy="LFU" copyOnRead="true"
        copyOnWrite="true" />
</ehcache>

Spring 5参考指南没有提到EHCache用法,Spring 4参考指南指出:“Ehcache 3.x完全符合JSR-107,不需要专门的支持。
所以我创建了控制器OrderController和REST端点:

@Cacheable("orders")
@GetMapping(path = "/{id}")
public Order findById(@PathVariable int id) {
    return orderRepository.findById(id);
}

Sping Boot 配置:

@SpringBootApplication
@EnableCaching
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

但是当我调用这个端点时,我得到一个异常:
找不到Builder[public org.Order org.OrderController.findById(int)]的名为“orders”的缓存caches=[orders]|关键字=''|keyGenerator=''|cacheManager=''|cacheResolver=''|条件=''|除非=''|sync='false'
然后我尝试使用Spring Framework 4中的示例:

@Bean
public CacheManager cacheManager() {
    return new EhCacheCacheManager(ehCacheCacheManager().getObject());
}

@Bean
public EhCacheManagerFactoryBean ehCacheCacheManager() {
    EhCacheManagerFactoryBean cmfb = new EhCacheManagerFactoryBean();
    cmfb.setConfigLocation(new ClassPathResource("ehcache.xml"));
    cmfb.setShared(true);
    return cmfb;
}

但由于异常而无法编译:
无法解析类型net.sf.ehcache.CacheManager。它是从必需的.class文件间接引用的
请指示。

vlurs2pr

vlurs2pr1#

这里面有很多东西。您正在使用的Ehcache 3通过JCache与Spring一起使用。
这就是为什么你需要使用spring.cache.jcache.config=classpath:ehcache.xml
那么,您的Ehcache配置确实是Ehcache 2配置。EhCacheCacheManager也是如此。对于JCache,应该使用JCacheCacheManager。但实际上,对于ehcache.xml,您甚至不需要它。
以下是使其工作的步骤
步骤1:设置正确的依赖关系。请注意,您不需要指定任何版本,因为它们是由父pom依赖项管理提供的。javax.cache现在是1.1版本。

<dependency>
    <groupId>org.ehcache</groupId>
    <artifactId>ehcache</artifactId>
</dependency>
<dependency>
    <groupId>javax.cache</groupId>
    <artifactId>cache-api</artifactId>
</dependency>

步骤2:在src/main/resources中添加ehcache.xml文件。下面是一个例子。

<?xml version="1.0" encoding="UTF-8"?>
<config
    xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns:jsr107='http://www.ehcache.org/v3/jsr107'
    xmlns='http://www.ehcache.org/v3'
    xsi:schemaLocation="
        http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.5.xsd
        http://www.ehcache.org/v3/jsr107 http://www.ehcache.org/schema/ehcache-107-ext-3.5.xsd">

  <service>
    <jsr107:defaults enable-management="false" enable-statistics="true"/>
  </service>

  <cache alias="value">
    <resources>
      <heap unit="entries">2000</heap>
    </resources>
  </cache>
</config>

步骤3:需要一个带有此行的application.properties来查找ehcache.xml

spring.cache.jcache.config=classpath:ehcache.xml

请注意,由于JCache位于类路径中,因此Spring Cache将选择它作为该高速缓存提供程序。所以不需要指定spring.cache.type=jcache
第4步:像之前一样启用缓存

@SpringBootApplication
    @EnableCaching
    public class Cache5Application {

        private int value = 0;

        public static void main(String[] args) {
            ApplicationContext context = SpringApplication.run(Cache5Application.class, args);
            Cache5Application app = context.getBean(Cache5Application.class);
            System.out.println(app.value());
            System.out.println(app.value());
        }

        @Cacheable("value")
        public int value() {
            return value++;
        }
    }
vmpqdwk3

vmpqdwk32#

您需要强制它使用ehcache版本2

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache</artifactId>
    <version>2.10.3</version>
</dependency>

使用ehcache 3:
以下是应用程序:

@SpringBootApplication
@EnableCaching
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

下面是应用程序.yml

spring:
  cache:
    ehcache:
      config: ehcache.xml

这里是一个带有测试计数器的服务

@Service
public class OrderService {

    public static int counter=0;

    @Cacheable("orders")
    public Order findById(Long id) {
        counter++;
        return new Order(id, "desc_" + id);
    }
}

下面是一个测试来证明它正在使用该高速缓存:

@RunWith(SpringRunner.class)
@SpringBootTest
public class OrderServiceTest {

    @Autowired
    private OrderService orderService;

    @Test
    public void getHello() throws Exception {
        orderService.findById(1l);
        assertEquals(1, OrderService.counter);
        orderService.findById(1l);
        assertEquals(1, OrderService.counter);
        orderService.findById(2l);
        assertEquals(2, OrderService.counter);
    }
}

有关工作示例,请参见here

v8wbuo2f

v8wbuo2f3#

我做了额外的研究。Sping Boot 不会选择以下配置(来自application.properties):

spring.cache.ehcache.config=classpath:ehcache.xml

所以我创建了jcache.xml并放入src/main/resource文件夹:

<config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns='http://www.ehcache.org/v3'
    xsi:schemaLocation="
        http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.0.xsd">

    <cache alias="orders">
        <key-type>org.springframework.cache.interceptor.SimpleKey</key-type>
        <value-type>java.util.Collections$SingletonList</value-type>
        <heap unit="entries">200</heap>
    </cache>
</config>

然后我在www.example.com中更改设置application.properties为

spring.cache.jcache.config=classpath:jcache.xml

现在Spring Caching工作正常。但是如何获取ehcache.xml仍然是个问题

4uqofj5v

4uqofj5v4#

面对同样的问题。

  • 我的ehcache.xml看起来像
<config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns='http://www.ehcache.org/v3'
    xmlns:jsr107='http://www.ehcache.org/v3/jsr107'
    xsi:schemaLocation="
        http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.0.xsd
        http://www.ehcache.org/v3/jsr107 http://www.ehcache.org/schema/ehcache-107-ext-3.0.xsd">
  <service>
      <jsr107:defaults>
          <jsr107:cache name="vehicles" template="heap-cache" />
      </jsr107:defaults>
  </service>
  <cache-template name="heap-cache">
      <heap unit="entries">20</heap>
  </cache-template>
</config>
  • 已在application.properties中配置spring.cache.jcache.config=classpath:ehcache.xml
  • 在我的应用程序类上有@EnableCaching
  • 在我的服务实现上有@CacheResult

@CacheResult(cacheName =“vehicles”)public VehicleDetail getVehicle(@CacheKey String vehicleId)抛出VehicleServiceException

  • 请注意,我没有CacheManager bean。

如果有人能指出我错过了什么,那就太好了。

0yg35tkg

0yg35tkg5#

hmm..将ehcache.xml更改为,做到了这一点..

<config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns='http://www.ehcache.org/v3'
    xmlns:jsr107='http://www.ehcache.org/v3/jsr107'
    xsi:schemaLocation="
        http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.0.xsd
        http://www.ehcache.org/v3/jsr107 http://www.ehcache.org/schema/ehcache-107-ext-3.0.xsd">

    <service>
        <jsr107:defaults enable-management="true"
            enable-statistics="true" />
    </service>

    <cache alias="vehicles" uses-template="heap-cache" />

    <cache-template name="heap-cache">
        <heap unit="entries">20</heap>
    </cache-template>
</config>
uxhixvfz

uxhixvfz6#

在POM.XML中添加以下依赖项

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.0.6</version>
        <relativePath />
    </parent>
   <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-cache</artifactId>
        </dependency>
        <dependency>
            <groupId>org.ehcache</groupId>
            <artifactId>ehcache</artifactId>
            <version>3.10.8</version>
        </dependency>

在www.example.com文件中添加下面一行Application.properties

spring.cache.jcache.config=classpath:ehcache.xml

添加Ehcache.xml然后在@SpringBootApplication文件中添加以下代码沿着@EnableCaching

@Bean
    public CacheManager cacheManager() {
      return new ConcurrentMapCacheManager("yourcacheName{must match with XML file}");
    }

相关问题