0

我正在使用 Spring Cache 机制实现一个模块。该模块是通用的,可以缓存不同类型的实体。所以我不想更改 Java 代码并希望用户相应地配置 applicationcontext.xml 文件。他可以将不同类型实体的名称放在 applicationcontext.xml 中,代码应该可以工作。例如 -

<context:annotation-config/>
<cache:annotation-driven cache-manager="cacheManager"/>
<context:component-scan base-package="com.nokia.oss.sure.adapter"/>

<bean id="NetworkEntityService" class="com.nokia.oss.sure.adapter.cache.NetworkEntityServiceImpl"/>

<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
    <property name="caches">
        <set>
            <bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean" name="NetworkEntity"/>
        </set>
    </property>
</bean>

他可能将 NetworkEntity 更改为 ServiceEntity 等等。

所以在Java代码中我需要提到——

@CacheConfig(cacheNames={"NetworkEntity"})

或者我可以对每种方法都使用相同的方法-

@CachePut(cacheNames="NetworkEntity", key="#entity.sureName")
public Entity addEntity(Entity entity) {
    return entity;
}

但正如我之前所说,我不想将缓存名称“NetworkEntity”放在 Java 代码中,而是希望将其放在 applicationcontext.xml 文件中。可能吗?

此外,是否可以省略 Java 文件中的所有注释?如果我只是使用AbstractApplicationContext context = new GenericXmlApplicationContext("applicationContext.xml");,是否可以在 applicationContext.xml 文件中提及我想要应用 @Cacheable 注释的方法,例如

我搜索了很多,在任何地方都找不到。

谢谢尼尔玛利亚

4

1 回答 1

0

我找到了答案。我们可以将以下内容放入 applicationContext.xml -

<!-- define caching behavior -->
    <cache:advice id="cacheAdviceInterface" cache-manager="cacheManager">
        <cache:caching cache="NetworkEntity">
            <cache:cacheable method="getEntity"/>
            <cache:cache-put method="putEntity"/>
        </cache:caching>
    </cache:advice>

在这种情况下,我们不需要将@CacheConfig、@CachePut 等注释放在 Java 文件中。

于 2019-03-22T09:36:52.710 回答