spring cache 提供了基于注解的緩存配置方法赡麦,其實(shí)現(xiàn)原理和事務(wù)管理的實(shí)現(xiàn)是一樣的, 都是通過 spring aop來實(shí)現(xiàn)的翅娶。spring aop 有一個(gè)問題貌虾, 默認(rèn) aop的實(shí)現(xiàn)是使用java 動(dòng)態(tài)代理技術(shù)來實(shí)現(xiàn)的锐借, 這樣就會(huì)導(dǎo)致,同一個(gè)對象內(nèi)的方法之間的調(diào)用疗杉,是不會(huì)被aop攔截到的繁堡。
要解決這個(gè)問題,我們可以選擇調(diào)整代碼的位置外乡数,讓緩存的方法和調(diào)用它的方法分離在不同的類中椭蹄,但是這種解決方案是不完美的,會(huì)導(dǎo)致原本內(nèi)聚的類净赴,分散在了不同的地方绳矩。
除了調(diào)整代碼外,還有什么辦法能支持這種情況玖翅?
使用AspectJ 進(jìn)行 織入翼馆。
AspectJ 織入器weaver 支持三種織入方式:
- compile-time weaving 使用aspectj 編譯器進(jìn)行編譯源碼
- post-compile weaving 對class 文件進(jìn)行織入
- load-time weaving(LTW) 當(dāng)class loader 加載類的時(shí)候,進(jìn)行織入
使用
通過JVM的-javaagent 加載代理金度,在代理內(nèi)持有Instrumentation 對象应媚,方便后續(xù)的注冊class translate hook。
-javaagent:D:\lib\spring-instrument\spring-instrument-4.3.0.RELEASE.jar
spring cache 配置 mode="aspectj"
<?xml version="1.0" encoding="UTF-8"?>
<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: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/cache http://www.springframework.org/schema/cache/spring-cache.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd">
<context:load-time-weaver/>
<cache:annotation-driven mode="aspectj"/>
<bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
<constructor-arg ref="redisTemplate"/>
</bean>
<bean id="propertyConfigurer3" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="order" value="3" />
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="locations">
<list>
<value>classpath:redis.properties</value>
</list>
</property>
</bean>
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
<property name="minIdle" value="${redis.minIdle}" />
<property name="maxIdle" value="${redis.maxIdle}" />
<property name="maxTotal" value="${redis.maxActive}" />
<property name="maxWaitMillis" value="${redis.maxWait}" />
<property name="testOnBorrow" value="${redis.testOnBorrow}" />
</bean>
<bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<property name="hostName" value="${redis.host}" />
<property name="port" value="${redis.port}" />
<property name="password" value="${redis.password}" />
<property name="usePool" value="true" />
<property name="poolConfig" ref="poolConfig" />
</bean>
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
<property name="connectionFactory" ref="connectionFactory" />
</bean>
<bean id="redisContainer" class="org.springframework.data.redis.listener.RedisMessageListenerContainer">
<property name="connectionFactory" ref="connectionFactory"/>
</bean>
</beans>
META-INF/aop.xml 聲明需要進(jìn)行織入的目標(biāo)類
<aspectj>
<weaver options="-verbose -showWeaveInfo">
<include within="com.xxx..*"/>
</weaver>
</aspectj>