能源項目xml檔案標籤釋義--DefaultAdvisorAutoProxyCreator

來源:互聯網
上載者:User

標籤:round   3.x   擷取   pat   poi   viso   xmlns   regex   自動   

[Spring]AOP攔截-三種方式實現自動代理

這裡的自動代理,我講的是自動代理bean對象,其實就是在xml中讓我們不用配置代理工廠,也就是不用配置class為org.springframework.aop.framework.ProxyFactoryBean的bean。

用Spring一個自動代理類DefaultAdvisorAutoProxyCreator:
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"></bean>

例如: 
原來不用自動代理的設定檔如下:

<?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:tx="http://www.springframework.org/schema/tx"    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd                http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">    <!-- 代理前原對象 -->    <bean id="person" class="cn.hncu.xmlImpl.Person"></bean>    <!-- 切面 = 切點+通知 -->    <bean id="advisor" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">        <!-- 切點 -->        <property name="patterns">            <list>                <value>.*run.*</value>            </list>        </property>        <!-- 通知-由我們寫,實際代理動作 -->        <property name="advice">            <bean id="advice" class="cn.hncu.xmlImpl.AroundAdvice"></bean>        </property>    </bean>    <!-- 代理工廠 -->    <bean id="personProxied" class="org.springframework.aop.framework.ProxyFactoryBean">        <!-- 放入原型對象 -->        <property name="target" ref="person"></property>        <!-- 放入切面 -->        <property name="interceptorNames">            <list>                <value>advisor</value>            </list>        </property>    </bean></beans>

現在改用自動代理,如下配置:

<beans ...><!-- 代理前原對象 -->    <bean id="person" class="cn.hncu.xmlImpl.Person"></bean>    <!-- 切面 = 切點+通知 -->    <bean id="advisor" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">        <!-- 切點 -->        <property name="patterns">            <list>                <value>.*run.*</value>            </list>        </property>        <!-- 通知-由我們寫,實際代理動作 -->        <property name="advice">            <bean id="advice" class="cn.hncu.xmlImpl.AroundAdvice"></bean>        </property>    </bean>

<!-- 自動代理 --> <bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"></bean></beans>
測試方法
  @Test//自動代理    public void demo4(){        ApplicationContext ctx = new ClassPathXmlApplicationContext("cn/hncu/xmlImpl/4.xml");        //我們直接在這裡擷取Person對象就可以了,因為在最開始xml檔案newPerson對象後,Spring就已經幫我們代理了!        Person p =ctx.getBean(Person.class);        p.run();        p.say();    }

相對於前面,也就是把代理工厂部分換成自動代理了。

能源項目xml檔案標籤釋義--DefaultAdvisorAutoProxyCreator

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.