0

我在使 Spring Cache 在 OSGi 环境中工作时遇到问题。也许你可以告诉我我错过了什么。

我已成功配置 Spring Cache 以在测试期间工作,例如

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:spring/spring-test.xml"})
public class CacheDictTest {

@Autowired
Dictionary dictionary;

@Test
public void getDict5Times() {
    for (int i = 0; i < 5; i++) {
        System.out.println(dictionary.getSourceDomains());
    }
    Assert.assertTrue(true);
  }
}

选择执行一次,然后我有 5 个漂亮的打印件。

但是我不能让它在一个包中工作

Cacheable 注释似乎被忽略了。每次我调用 dictionary.getSourceDomains() 时都会执行查询。我使用 ServiceMix 5.3.0 作为容器。

我的配置:

<cache:annotation-driven cache-manager="cacheManager"/>
<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
    <property name="caches">
        <set>
            <bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean" p:name="dictionary"/>
        </set>
    </property>
</bean>

字典:

public class DictionaryImpl implements Dictionary {

private DictionaryDao repository;

public DictionaryDao getRepository() {
    return repository;
}

public void setRepository(DictionaryDao repository) {
    this.repository = repository;
}

@Override
public List<String> getSourceDomains() {
    List<DictEntry> entries = repository.getDictionary(DictTypeEnum.SOURCE_DOMAIN);
    List<String> domains = new ArrayList<>();
    for(DictEntry entry : entries) {
        domains.add(entry.getKey());
    }
    return domains;
  }



}

和道

public class DictionaryDaoImpl extends BaseDaoImpl implements DictionaryDao {

private static final Logger LOG = LoggerFactory.getLogger(DictionaryDaoImpl.class);

@Override
@Cacheable(value="dictionary", key="#type")
public List<DictEntry> getDictionary(DictTypeEnum type) {
    LOG.info("Loading {}", type);
    Query q = getSession().createQuery("from DictEntry where type=:type");
    q.setParameter("type", new DictType(type.getTypeId()));
    List results = q.list();
    LOG.debug("Results {}", results);
    return results;
  }


}

我试过的

  • 将 @Cacheable 注释移动到 DictionaryDao(接口)、DictionaryImpl 或 Dictionary(接口)——没有效果。
  • 使用不同的缓存实现(ehcache 而不是 JDK ConcurrentMap-based Cache)- 没有效果
4

1 回答 1

0

问题是在 osgi 清单中缺少可缓存注释包的导入。

org.springframework.cache.annotation

Servicemix 没有显示任何缺少类的错误,只是让服务工作忽略 Cacheable 注释。

于 2015-01-21T15:03:03.147 回答