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 に答える