濮阳杆衣贸易有限公司

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

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

熱門標(biāo)簽:聊城智能電銷機(jī)器人外呼 南昌市地圖標(biāo)注app 地圖標(biāo)注市場怎么樣 好操作的電話機(jī)器人廠家 泰州泰興400電話 怎么申請 如何用中國地圖標(biāo)注數(shù)字點 企業(yè)怎么在聯(lián)通申請400電話 百度地圖添加標(biāo)注圖標(biāo)樣式 南京新思維電話機(jī)器人

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> 
  
  !-- 定義切入點 --> 
  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)通知和切入點) --> 
  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)通知和切入點) --> 
  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)器切入點匹配的的Bean,那么DefaultAdvisorAutoProxyCreator將自動為其創(chuàng)建代理。

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

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

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

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

標(biāo)簽:烏蘭察布 白銀 自貢 吉林 開封 銅川 臨汾 山南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實例》,本文關(guān)鍵詞  Spring,自動,代理,創(chuàng)建,器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Spring 自動代理創(chuàng)建器詳細(xì)介紹及簡單實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    介休市| 凌云县| 罗源县| 承德县| 江都市| 福清市| 呼图壁县| 上杭县| 霍林郭勒市| 南岸区| 桦甸市| 澎湖县| 广灵县| 卓资县| 明星| 黄龙县| 金沙县| 汝阳县| 民丰县| 徐州市| 武陟县| 洞头县| 宝鸡市| 建德市| 友谊县| 贡嘎县| 嘉定区| 齐河县| 岳阳县| 乌审旗| 涿州市| 兴和县| 浦县| 平顶山市| 江都市| 泽普县| 习水县| 老河口市| 加查县| 车致| 临西县|