Spring學習筆記 AOP的HelloWorld

來源:互聯網
上載者:User

HelloWorld實現的基本步驟如下:

1.建立介面

package aop;public interface WebSite{    public void showContent();}

2.建立介面的實作類別

package aop;public class ArvinRongHomePage implements WebSite{    @Override    public void showContent()    {        System.out.println("Arvin Rong's Space.");    }}

3.建立main方法類

package aop;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class AopMain{    /**     * @authorArvinRong, 2012-8-31     */    public static void main(String[] args)    {        String configString = "aop/spring-config.xml";        ApplicationContext context = new ClassPathXmlApplicationContext(configString);        WebSite webSite = context.getBean("website",WebSite.class);        webSite.showContent();    }}

4.建立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"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/context        http://www.springframework.org/schema/context/spring-context-3.0.xsd">            <bean id="website" class="aop.ArvinRongHomePage" />  </beans>

測試回合,通過後

Arvin Rong's Space.

 

5.建立在介面實作類別方法前需要執行的代碼類(這種類在Spring中叫做Advice)

package aop;import java.lang.reflect.Method;import org.springframework.aop.MethodBeforeAdvice;public class BeforeContentAdvice implements MethodBeforeAdvice{    @Override    public void before(Method arg0, Object[] arg1, Object arg2)            throws Throwable    {       System.out.println("Welcome to my page.");    }}

6.修改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"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/context        http://www.springframework.org/schema/context/spring-context-3.0.xsd">            <bean id="websiteTarget" class="aop.ArvinRongHomePage" /><!--id由website更改為websiteTarget-->    <bean id="websiteAdvice" class="aop.BeforeContentAdvice" />        <bean id="website" class="org.springframework.aop.framework.ProxyFactoryBean">        <property name="proxyInterfaces" value="aop.WebSite" />        <property name="interceptorNames">            <list>                <value>websiteAdvice</value>            </list>        </property>        <property name="target" ref="websiteTarget" />    </bean></beans>

測試回合,查看結果

Welcome to my page.Arvin Rong's Space.

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.