1

我想使用Spring Cache 功能,但我不知道这个模块有什么依赖关系。我有这样的配置:

<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">

    ...

<mvc:annotation-driven />
<cache:annotation-driven />

却不<cache:annotation-driven />被认可。它给出了这个错误:

cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'cache:annotation-driven'

我认为它的出现是因为我没有 Spring 模块的 jar 文件,因为我没有添加所有(当我真正需要它们时添加它们)。

让 Spring Cache 工作需要哪些 spring 模块 jar?或者最后我在哪里可以找到这些信息?

谢谢

4

2 回答 2

6

您还需要:

xmlns:cache="http://www.springframework.org/schema/cache"

正确的 xsd 是:

http://www.springframework.org/schema/cache/spring-cache-3.1.xsd
于 2011-03-07T13:53:08.113 回答
0

您是否了解此功能是 Spring 3.1 的一部分,尚未发布是的?

因此,您需要使用Spring 3.1 里程碑版本中的 Spring jar。

于 2011-03-07T14:47:18.110 回答