28

ここここで説明されているように Spring 3.1 キャッシングを実装しようとしていますが、機能していないようです: @cacheable とマークされていても、私のメソッドは毎回実行されます。私は何を間違っていますか?

アプリケーションの残りの部分から分離するために、独自の構成ファイルを含む junit テスト ケースに移動しましたが、問題は引き続き発生します。関連ファイルは次のとおりです。

Spring-test-servlet.xml

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

<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager" p:cache-manager-ref="ehcache"/>
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
      p:config-location="classpath:ehcache.xml"/>
</beans>

ehcache.xml

<ehcache>
<diskStore path="java.io.tmpdir"/>
<cache name="cache"
       maxElementsInMemory="100"
       eternal="false"
       timeToIdleSeconds="120"
       timeToLiveSeconds="120"
       overflowToDisk="true"
       maxElementsOnDisk="10000000"
       diskPersistent="false"
       diskExpiryThreadIntervalSeconds="120"
       memoryStoreEvictionPolicy="LRU"/>

</ehcache>

MyTest.java

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:spring-test-servlet.xml"})
@Component
public class MyTest extends TestCase {

    @Test
    public void testCache1(){
        for(int i = 0; i < 5; i++){
            System.out.println("Calling someMethod...");
            System.out.println(someMethod(0));
        }
    }

    @Cacheable("testmethod")
    private int someMethod(int val){
        System.out.println("Not from cache");
        return 5;
    }
}

関連する Pom エントリ: (spring-version = 3.1.1.RELEASE)

    <dependency>
        <groupId>net.sf.ehcache</groupId>
        <artifactId>ehcache-core</artifactId>
        <version>2.5.1</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context-support</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>${spring.version}</version>
    </dependency>

テストを実行すると、Spring は、キャッシュがエラーなしで初期化されたように見えるデバッグ メッセージを出力します。

DEBUG: config.ConfigurationHelper - No CacheManagerEventListenerFactory class specified. Skipping...
DEBUG: ehcache.Cache - No BootstrapCacheLoaderFactory class specified. Skipping...
DEBUG: ehcache.Cache - CacheWriter factory not configured. Skipping...
DEBUG: config.ConfigurationHelper - No CacheExceptionHandlerFactory class specified. Skipping...
DEBUG: store.MemoryStore - Initialized net.sf.ehcache.store.MemoryStore for cache
DEBUG: disk.DiskStorageFactory - Failed to delete file cache.data
DEBUG: disk.DiskStorageFactory - Failed to delete file cache.index
DEBUG: disk.DiskStorageFactory - Matching data file missing (or empty) for index file. Deleting index file /var/folders/qg/xwdvsg6x3mx_z_rcfvq7lc0m0000gn/T/cache.index
DEBUG: disk.DiskStorageFactory - Failed to delete file cache.index
DEBUG: ehcache.Cache - Initialised cache: cache
DEBUG: config.ConfigurationHelper - CacheDecoratorFactory not configured. Skipping for 'cache'.
DEBUG: config.ConfigurationHelper - CacheDecoratorFactory not configured for defaultCache. Skipping for 'cache'.

ただし、デバッグ出力には、someMethod へのメソッド呼び出しと someMethod 内からの print ステートメントとの間のキャッシュ チェックが毎回表示されません。

足りないものはありますか?

4

3 に答える 3

82

http://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/html/cache.htmlから

プロキシ モード (デフォルト) では、プロキシ経由で着信する外部メソッド呼び出しのみがインターセプトされます。これは、実際には、ターゲットオブジェクト内のメソッドがターゲットオブジェクトの別のメソッドを呼び出す自己呼び出しは、呼び出されたメソッドが @Cacheable でマークされていても、実行時に実際のキャッシュにつながらないことを意味します -この場合。

メソッドの可視性と@Cacheable/ @CachePut/@CacheEvict

プロキシを使用する場合は、パブリックの可視性@Cacheを持つメソッドにのみアノテーションを適用する必要があります。

  1. someMethod同じターゲット オブジェクトで自己呼び出しを行います。
  2. あなたの@Cacheableメソッドは公開されていません。
于 2012-04-27T08:20:41.090 に答える
2

注釈 (「testmethod」) で参照している名前と一致するキャッシュを定義する必要があります。そのキャッシュの ehcache.xml にもエントリを作成します。

于 2012-04-27T08:08:42.653 に答える
1

Lee Chee Kiam に加えて: これは、バイパス (注釈なし) メソッド呼び出しのわずかな使用のみを伴う小規模プロジェクト向けの私のソリューションです。DAO は単純にプロキシとして自身に注入され、単純なメソッド呼び出しの代わりにそのプロキシを使用して独自のメソッドを呼び出します。そのため、複雑な実装を行わずに @Cacheable を考慮します。

同僚には奇妙に見える可能性があるため、コード内のドキュメントを強くお勧めします。しかし、それはテストが簡単で、シンプルで、すぐに達成でき、完全な AspectJ インストルメンテーションを惜しみません。ただし、より頻繁に使用する場合は、Lee Chee Kiam が行ったように AspectJ ソリューションもお勧めします。

@Service
@Scope(proxyMode = ScopedProxyMode.TARGET_CLASS)
class PersonDao {

    private final PersonDao _personDao;

    @Autowired
    public PersonDao(PersonDao personDao) {
        _personDao = personDao;
    }

    @Cacheable(value = "defaultCache", key = "#id")
    public Person findPerson(int id) {
        return getSession().getPerson(id);
    }

    public List<Person> findPersons(int[] ids) {
        List<Person> list = new ArrayList<Person>();
        for (int id : ids) {
            list.add(_personDao.findPerson(id));
        }
        return list;
    }
}
于 2015-12-04T14:48:38.033 に答える