Spring AOP面向切面編程

1、介紹

AOP 即 Aspect Oriented Program 面向切面編程
首先,在面向切面編程的思想裏面,把功能分爲核心業務功能,和輔助功能。
所謂的核心業務,好比登錄,增長數據,刪除數據都叫核心業務
所謂的輔助功能,好比性能統計,日誌,事務管理等等
輔助功能在Spring的面向切面編程AOP思想裏,即被定義爲切面
在面向切面編程AOP的思想裏面,核心業務功能和切面功能分別獨立進行開發
而後把切面功能和核心業務功能 "編織" 在一塊兒,這就叫AOPjava

 

舉個例子方便了解aop來作什麼:百度搜索aop,其中搜索功能就是核心業務,下面的「百度爲您找到相關結果約22,700,000個」就是aop作的事情。spring

 

 

2、項目實例:

一、新建一個java項目express

 包的結構以下編程

 

二、導入jar包,按照結構創建相關文件app

三、ProductService類,輸出一句話用來演示業務功能性能

public class ProductService { public void doSomeService(){ System.out.println("doSomeService"); } }

四、準備日誌切面LoggerAspect,該日誌切面的功能是 在調用核心功能以前和以後分別打印日誌測試

import org.aspectj.lang.ProceedingJoinPoint; public class LoggerAspect { public Object log(ProceedingJoinPoint joinPoint) throws Throwable { System.out.println("start log:" + joinPoint.getSignature().getName()); Object object = joinPoint.proceed(); System.out.println("end log:" + joinPoint.getSignature().getName()); return object; } }

五、application.xml文件的配置spa

 基礎通用模板日誌

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">
</beans>

在其中添加核心功能類,和切面類的聲明, class="包名.類名"code

<bean name="p" class="com.yyt.service.ProductService">
    </bean>
    
    <bean id="loggerAspect" class="com.yyt.aspect.LoggerAspect"/>

指定業務功能(打印一句話)

<aop:pointcut id="loggerCutpoint" expression=
        "execution(* com.yyt.service.ProductService.*(..)) "/>

指定輔助功能(在打印話以前以後輸出日誌)

<aop:aspect id="logAspect" ref="loggerAspect">
        <aop:around pointcut-ref="loggerCutpoint" method="log"/>
    </aop:aspect>

而後經過aop:config把業務對象與輔助功能編織在一塊兒。

總文件以下

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx
   http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  

    <bean name="p" class="com.yyt.service.ProductService">
    </bean>
    
    <bean id="loggerAspect" class="com.yyt.aspect.LoggerAspect"/>
     
    <aop:config>
        <aop:pointcut id="loggerCutpoint" expression=
            "execution(* com.yyt.service.ProductService.*(..)) "/>
             
        <aop:aspect id="logAspect" ref="loggerAspect">
            <aop:around pointcut-ref="loggerCutpoint" method="log"/>
        </aop:aspect>
    </aop:config>   
 
  
</beans>

六、測試類,載入xml配置文件,調用業務

package com.yyt.test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.yyt.service.ProductService; public class Test { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationContext.xml" }); ProductService s = (ProductService) context.getBean("p"); s.doSomeService(); } }

七、結果

相關文章
相關標籤/搜索