SpringFramework中的AOP簡單使用
首先確定將要Proxy的目標,在Spring中預設採用JDK中的dynamic proxy,它只能夠實現介面的代理,如果想對類進行代理的話,需要採用CGLIB的proxy。顯然,選擇“程式設計到介面”是更明智的做法,下面是將要代理的介面:
public interface FooInterface {
public void printFoo();
public void dummyFoo();
}
以及其一個簡單的實現:
public class FooImpl implements FooInterface {
public void printFoo() {
System.out.println("In FooImpl.printFoo");
}
public void dummyFoo() {
System.out.println("In FooImpl.dummyFoo");
}
}
接下來建立一個Advice,在Spring中支援Around,Before,After returning和Throws四種Advice,這裡就以簡單的Before Advice舉例:
public class PrintBeforeAdvice implements MethodBeforeAdvice {
public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
System.out.println("In PrintBeforeAdvice");
}
}
有了自己的business interface和advice,剩下的就是如何去裝配它們了,首先利用ProxyFactory以程式設計方式實現,如下:
public class AopTestMain {
public static void main(String[] args) {
FooImpl fooImpl = new FooImpl();
PrintBeforeAdvice myAdvice = new PrintBeforeAdvice();
ProxyFactory factory = new ProxyFactory(fooImpl);
factory.addBeforeAdvice(myAdvice);
FooInterface myInterface = (FooInterface)factory.getProxy();
myInterface.printFoo();
myInterface.dummyFoo();
}
}
現在執行程式,神奇的結果就出現了:
In PrintBeforeAdvice
In FooImpl.printFoo
In PrintBeforeAdvice
In FooImpl.dummyFoo
雖然這樣能體會到Spring中AOP的用法,但這決不是值得推薦的方法,既然使用了Spring,在ApplicationContext中裝配所需要 的bean才是最佳策略,實現上面的功能只需要寫個簡單的applicationContext就可以了,如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<description>The aop application context</description>
<bean id="fooTarget" class="FooImpl"/>
<bean id="myAdvice" class="PrintBeforeAdvice"/>
<bean id="foo" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>FooInterface</value>
</property>
<property name="target">
<ref local="fooTarget"/>
</property>
<property name="interceptorNames">
<list>
<value>myAdvice</value>
</list>
</property>
</bean>
</beans>
當然,main中的程式碼也要進行相應的修改:
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new
ClassPathXmlApplicationContext("applicationContext.xml");
FooInterface foo = (FooInterface)context.getBean("foo");
foo.printFoo();
foo.dummyFoo();
}
現在執行一下,結果將和上面的執行結果完全一樣,這樣是不是更優雅?當需要更改實現時,只需要修改配置檔案就可以了,程式中的程式碼不需任何改動。
但是,這時候會發現被proxy的object中的所有方法呼叫時都將執行advice中的before,這顯然不能滿足絕大多數情況下的需要,此時,只 需借用Advisor就可以了,當然要在Advisor中利用pattern設定好哪些方法需要advice,更改applicationContext 如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<description>The springeva application context</description>
<bean id="fooTarget" class="FooImpl"/>
<bean id="printBeforeAdvice" class="PrintBeforeAdvice"/>
<bean id="myAdvisor"
class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
<property name="advice">
<ref local="printBeforeAdvice"/>
</property>
<property name="pattern">
<value>.*print.*</value>
</property>
</bean>
<bean id="foo" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>FooInterface</value>
</property>
<property name="target">
<ref local="fooTarget"/>
</property>
<property name="interceptorNames">
<list>
<value>myAdvisor</value>
</list>
</property>
</bean>
</beans>
主程式不需進行任何修改,執行結果已經變樣了:
In PrintBeforeAdvice
In FooImpl.printFoo
In FooImpl.dummyFoo
至此,應該已經理解了Spring中AOP的使用方法,當然Spring中AOP最重要的應用是Transaction Manager,舉個這方面的applicationContext例子看看:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "spring-beans.dtd">
<beans>
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>/WEB-INF/jdbc.properties</value>
</property>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>${jdbc.driverClassName}</value>
</property>
<property name="url">
<value>${jdbc.url}</value>
</property>
<property name="username">
<value>${jdbc.username}</value>
</property>
<property name="password">
<value>${jdbc.password}</value>
</property>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate.LocalSessionFactoryBean">
<property name="dataSource">
<ref local="dataSource"/>
</property>
<property name="mappingResources">
<value>smartmenu.hbm.xml</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
</props>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<bean id="smartmenuTarget" class="SmartMenuHibernate">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
<bean id="smartMenu"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager">
<ref local="transactionManager"/>
</property>
<property name="target">
<ref local="smartmenuTarget"/>
</property>
<property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
</props>
</property>
</bean>
</beans>
嗯,要想徹底理解Spring的AOP,最好還是多看看原始碼,開源就是好啊!
相關文章
- org.springframework.aop.TargetSourceSpringFramework
- AOP的簡單示例
- org.springframework.core簡單分析SpringFramework
- AOP的簡單實現
- org.springframework.beans簡單解讀SpringFrameworkBean
- Spring Aop簡單理解Spring
- SourceGenerator 使用姿勢(1):生成代理類,實現簡單的AOP
- React中useEffect的簡單使用React
- spring之AOP的概念及簡單案例Spring
- spring aop expression簡單說明SpringExpress
- Android中Lottie的簡單使用Android
- 【SQL Server中SMO的簡單使用】SQLServer
- IOS中WKWebView 簡單使用iOSWebView
- SpringBoot切面Aop的demo簡單講解Spring Boot
- Spring AOP就是這麼簡單啦Spring
- Spring【AOP模組】就是這麼簡單Spring
- python中的itertools模組簡單使用Python
- redis中lua指令碼的簡單使用Redis指令碼
- linux中的top命令簡單使用Linux
- Linux中ps命令的簡單使用Linux
- linux中history命令的簡單使用Linux
- Spring Boot實際專案用簡單的AOPSpring Boot
- .Net Core中簡單使用MongoDBMongoDB
- 簡易版的Spring框架之AOP簡單實現(對我來說不簡單啊)Spring框架
- 在elasticsearch中簡單的使用script_fieldsElasticsearch
- Python中*args和**kwargs 的簡單使用Python
- Android中ContentProvider的簡單使用AndroidIDE
- 簡單演示Excel中VBA程式碼的使用Excel
- css中的:before與:after的簡單使用CSS
- AOP簡介
- 【AOP】簡介
- spring aop實現簡單的許可權控制功能Spring
- 簡單實現類似Spring的Aop原理實現Spring
- python中佇列簡單使用Python佇列
- Kdevelop的簡單使用和簡單除錯dev除錯
- js中匿名函式的使用簡單介紹JS函式
- OpenCV在Android中的整合與簡單使用OpenCVAndroid
- Android中XML格式資料的簡單使用AndroidXML