佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實(shí)例

Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實(shí)例

熱門標(biāo)簽:團(tuán)購網(wǎng)站 銀行業(yè)務(wù) 服務(wù)器配置 科大訊飛語音識別系統(tǒng) Linux服務(wù)器 Mysql連接數(shù)設(shè)置 阿里云 電子圍欄

Spring 自動代理創(chuàng)建器

前言:

在經(jīng)典的spring Aop中,可以手工為目標(biāo)Bean創(chuàng)建代理Bean,配置文件必須為每一個需要增強(qiáng)的Bean聲明一個代理,結(jié)果配置文件里聲明了大量的代理Bean。

在經(jīng)典的Spring Aop中,Spring提供了自動代理創(chuàng)建器(Aotu proxy creator),有了自動代理創(chuàng)建器,就不再需要使用ProxyFactoryBean手工地創(chuàng)建代理了。

接口Animal和Book:


 package com.zzj.aop; public interface Animal { public void eat(); public void drink(); }
package com.zzj.aop; 
 
public interface Book { 
 public void read(); 
} 

目標(biāo)類:

package com.zzj.aop; 
 
public class Human implements Animal, Book{ 
 @Override 
 public void eat() { 
  System.out.println("eat..."); 
 } 
 
 @Override 
 public void drink() { 
  System.out.println("drink..."); 
 } 
 
 @Override 
 public void read() { 
  System.out.println("read..."); 
 } 
} 

前置通知和后置通知:

package com.zzj.aop; 
 
import java.lang.reflect.Method; 
 
import org.springframework.aop.MethodBeforeAdvice; 
 
public class MethodBefore implements MethodBeforeAdvice { 
 
 public void before(Method arg0, Object[] arg1, Object arg2) 
   throws Throwable { 
  System.out.println("before " + arg0.getName()); 
 } 
 
} 

package com.zzj.aop; 
 
import java.lang.reflect.Method; 
 
import org.springframework.aop.AfterReturningAdvice; 
 
public class MethodAfter implements AfterReturningAdvice { 
 
 public void afterReturning(Object arg0, Method arg1, Object[] arg2, 
   Object arg3) throws Throwable { 
  System.out.println( "after " + arg1.getName()); 
 } 
 
} 

Spring配置文件:

?xml version="1.0" encoding="UTF-8"?> 
beans xmlns="http://www.springframework.org/schema/beans" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans.xsd"> 
  !-- 定義目標(biāo)對象 --> 
  bean id="human" class="com.zzj.aop.Human">/bean> 
  
  !-- 定義通知 --> 
  bean id="beforeAdvice" class="com.zzj.aop.MethodBefore">/bean> 
  bean id="afterAdvice" class="com.zzj.aop.MethodAfter">/bean> 
  
  !-- 定義切入點(diǎn) --> 
  bean id="methodNamePointcut" 
   class="org.springframework.aop.support.NameMatchMethodPointcut"> 
   property name="mappedNames"> 
    list> 
     value>eat/value> 
     value>read/value> 
    /list> 
   /property> 
  /bean> 
  
  !-- 定義后置增強(qiáng)器(關(guān)聯(lián)通知和切入點(diǎn)) --> 
  bean id="AfterMethodNameAdvisor" 
   class="org.springframework.aop.support.DefaultPointcutAdvisor"> 
   property name="advice" ref="afterAdvice">/property> 
   property name="pointcut" ref="methodNamePointcut">/property> 
  /bean> 
  !-- 定義前置增強(qiáng)器(關(guān)聯(lián)通知和切入點(diǎn)) --> 
  bean id="BeforeMethodNameAdvisor" 
   class="org.springframework.aop.aspectj.AspectJExpressionPointcutAdvisor"> 
   property name="advice" ref="beforeAdvice">/property> 
   property name="expression"> 
    value>execution(* *.*in*(..))/value>!-- 可匹配drink --> 
   /property> 
  /bean> 
  
  !-- 定義自動代理創(chuàng)建器 --> 
  bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator"> 
   property name="beanNames"> 
    list> 
     value>*human/value> 
    /list> 
   /property> 
   property name="interceptorNames"> 
    list> 
     value>AfterMethodNameAdvisor/value> 
     value>BeforeMethodNameAdvisor/value> 
    /list> 
   /property> 
  /bean> 
/beans> 

以上自動代理器可以為以human結(jié)尾的Bean創(chuàng)建代理。

測試:


package com.zzj.aop; 
 
import org.springframework.context.ApplicationContext; 
import org.springframework.context.support.ClassPathXmlApplicationContext; 
 
public class Test { 
 
 /** 
  * @param args 
  */ 
 public static void main(String[] args) { 
  ApplicationContext context = new ClassPathXmlApplicationContext( 
    "applicationContext.xml"); 
  Animal animal = (Animal) context.getBean("human"); 
  Book book = (Book) animal; 
  animal.eat(); 
  animal.drink(); 
  book.read(); 
 
 } 
 
} 

輸出:

eat... 
after eat 
before drink 
drink... 
read... 
after read 

Spring還提供了另一個自動代理創(chuàng)建器:DefaultAdvisorAutoProxyCreator。這個自動代理創(chuàng)建器不需要任何配置,他會自動檢查Ioc容器里聲明的每一個增強(qiáng)器和Bean。如果存在與增強(qiáng)器切入點(diǎn)匹配的的Bean,那么DefaultAdvisorAutoProxyCreator將自動為其創(chuàng)建代理。

bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"/> 

需要注意的是,DefaultAdvisorAutoProxyCreator可能會代理那些不希望被代理的目標(biāo)Bean,所以使用時(shí)要格外小心。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • 詳解在Spring中如何自動創(chuàng)建代理
  • Springboot源碼 AbstractAdvisorAutoProxyCreator解析
  • Spring-AOP自動創(chuàng)建代理之BeanNameAutoProxyCreator實(shí)例

標(biāo)簽:廣元 衡水 衢州 萍鄉(xiāng) 江蘇 大理 蚌埠 棗莊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實(shí)例》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    阳朔县| 扎兰屯市| 阿克| 焦作市| 儋州市| 定日县| 湖州市| 彩票| 平遥县| 临高县| 岑溪市| 花莲市| 吐鲁番市| 武强县| 孝昌县| 怀安县| 芒康县| 马边| 永福县| 揭东县| 磴口县| 雷波县| 改则县| 安陆市| 克什克腾旗| 雷山县| 且末县| 双辽市| 天全县| 玛曲县| 克拉玛依市| 得荣县| 高淳县| 广宁县| 新郑市| 慈溪市| 义乌市| 渑池县| 潜江市| 永年县| 新乡市|