Spring AOP配置(Annotation;Xml)

Spring实现动态代理配置是有两种配置文件:

1、   xml文件方式;

2、  annotation方式(使用AspectJ类库实现的。)

一、      AOP配置annotation方式

(一)  搭建annotation开发环境

首先:需要在配置文件中加入@AspectJ标签

<aop:aspectj-autoproxy/>

自动帮我产生代理

注意:Spring默认并没有加入aop的xsd文件,因为我们需要手动加入(红色部分)

<beansxmlns="http://www.springframework.org/schema/beans"

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

      xmlns:context="http://www.springframework.org/schema/context"

      xmlns:aop="http://www.springframework.org/schema/aop"

      xsi:schemaLocation="http://www.springframework.org/schema/beans

          http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

          http://www.springframework.org/schema/context

          http://www.springframework.org/schema/context/spring-context-2.5.xsd

          http://www.springframework.org/schema/aop

          http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

   <context:annotation-config/>

   <context:component-scanbase-package="com.wjt276"/>

   <aop:aspectj-autoproxy/>

</beans>

 

      另外需要引用aspectJ的jar包:

                                         aspectjweaver.jar

                                         aspectjrt.jar

(二)  aspectJ类库

AspectJ是一个专门用来实现动态代理(AOP编程)的类库

AspectJ是面向切面编程的框架

Spring使用就是这个类库实现动态代理的

(三)  AOP的annotation实例

要求:在执行save()方法之前加入日志逻辑

1、  spring的配置文件同上面的

2、  model类、dao层类、service层类都与上面天下一致

3、  切面类(LogInterceptor)

 

importorg.aspectj.lang.annotation.Aspect;

importorg.aspectj.lang.annotation.Before;

importorg.springframework.stereotype.Component;

@Aspect

@Component

public classLogInterceptor {

 

   @Before("execution(public voidcom.wjt276.dao.impl.UserDaoImpl.save(com.wjt276.model.User))")

   public void before(){

      System.out.println("method start...");

    

}

      结果:这样在运行public voidcom.wjt276.dao.impl.UserDaoImpl.save(com.wjt276.model.User)方法之前就会先执行这个逻辑了。

    注意:

   1、@Aspect:意思是这个类为切面类

   2、@Componet:因为作为切面类需要Spring管理起来,所以在初始化时就需要将这个类初始化加入Spring的管理;

   3、@Befoe:切入点的逻辑(Advice)

   4、execution…:切入点语法

 

(四) 

三个连接点(切入点)

AspectJ 的专业术语

1、  JoinPoint

切入面

连接点(切入点)

 

程序执行过程

 

 

 

 

 

 

 


2、  PointCut

切入点人集合

当需要定义一个切入点时,则需要使用这个

@Pointcut("execution(* com.xyz.someapp.service.*.*(..))")

  public void businessService() {}

 

3、  Aspect

切面

4、  Advice

切入点的逻辑

例如上例中的@Before

5、  Target

被代理对象

6、  Weave

织入

 

(五)  织入点语法

1、   无返回值、com.wjt276.dao.impl.UserDaoImpl.save方法 参数为User

execution(public voidcom.wjt276.dao.impl.UserDaoImpl.save(com.wjt276.model.User))

2、   任何包、任何类、任何返回值、任何方法的任何参数

execution(public * *(..))

3、   任何包、任何类、任何返回值、任何set开头方法的任何参数

execution(* set*(..))

4、   任何返回值、com.xyz.service.AccountService类中的任何方法、任何参数

execution(* com.xyz.service.AccountService.*(..))

5、   任何返回值、com.xyz.service包中任何类中的任何方法、任何参数

execution(* com.xyz.service.*.*(..))

6、   任何返回值、com.xyz.service包中任何层次子包(..)、任何类、任何方法、任何参数

execution(* com.xyz.service..*.*(..))

7、    void 和!void(非void)

execution(public void com.xyz.service..*.*(..))

execution(public !void com.xyz.service..*.*(..))

 

8、   args:这个用于获取拦截方法的参数

如:

/**

myMehod为一个切入点,切入点声明如下:

@Pointcut("execution(* com.test.aop.spring..*.*(..)) ")
 public void myMethod(){}

**/

@Before(value = "myMethod() && args(name)")

 public void before(String name){
  
  System.out.println("前置通知" + name);
 }

注意:这时这个前置通知只会拦截那些 只有一个String类型参数 的方法,其它的方法都不会被这个前置通知所拦截,并且方法的这个String参数也会作为before的参数传入

     其它通知都有这个功能

 

9、   returning/throwing:分别为@AfterReturning与@AfterThrowing的属性

/**

pointcut:指定切入点

returning:将方法的返回值(返回值必须为String类型时)做为参数传入afterReturn方法;

        只有1)被拦截方法的返回值类型与切入方法的参数一致或2)被拦截方法的声明为void时这两种情况才会被拦截.

throwing:将被拦截方法产生的异常做为参数传入afterThrowing方法,只有产生异常才会被这个切入点拦截;

        且产生的异常为切入方法的异常参数的子类(下面的为Exception的子类,也就是所有的异常都会被拦截)

**/

@AfterReturning(pointcut="myMethod()", returning="result")
 public void afterReturn(String result){
  
  System.out.println("return通知" + result);
 }
 
@AfterThrowing(pointcut = "myMethod()", throwing="e")
 public void afterThrowing(Exception e){
  
  System.out.println("异常通知" + e);
 }

   

 

注意:以上是AspectJ的织入点语法,SpringAOP也实现了自己的织入点语法,同样可以使用

within(com.xyz.service.*)

 

within(com.xyz.service..*)

 

this(com.xyz.service.AccountService)

 

target(com.xyz.service.AccountService)

 

args(java.io.Serializable)

 

@target(org.springframework.transaction.annotation.Transactional)

 

@within(org.springframework.transaction.annotation.Transactional)

 

@annotation(org.springframework.transaction.annotation.Transactional)

 

@args(com.xyz.security.Classified)

 

bean(tradeService)

 

bean(*Service)

(六)  Advice

1、    @Before

执行方法之前

@Aspect

public class BeforeExample {

 @Before("com.xyz.myapp.SystemArchitecture.dataAccessOperation()")

  public void doAccessCheck() { // ... }}

 

@Aspect

public class BeforeExample {

  @Before("execution(*com.xyz.myapp.dao.*.*(..))")

  public void doAccessCheck() { // ... }}

2、    AfterReturning

方法正常执行完之后

@Aspect

public class AfterReturningExample {

 @AfterReturning("com.xyz.myapp.SystemArchitecture.dataAccessOperation()")

  public void doAccessCheck() { // ... }}

 

@Aspect

public class AfterReturningExample {

  @AfterReturning(

   pointcut="com.xyz.myapp.SystemArchitecture.dataAccessOperation()",

   returning="retVal")

  public void doAccessCheck(Object retVal) { //... }}

3、    AfterThrowing

方法抛出异常之后

@Aspect

public class AfterThrowingExample {

 @AfterThrowing("com.xyz.myapp.SystemArchitecture.dataAccessOperation()")

  public void doRecoveryActions() { // ...}}

 

@Aspect

public class AfterThrowingExample {

  @AfterThrowing(

   pointcut="com.xyz.myapp.SystemArchitecture.dataAccessOperation()",

   throwing="ex")

  public voiddoRecoveryActions(DataAccessException ex) { // ... }}

4、     @After (finally)

方法抛出异常被catch之后,需要进行的部分(相当于finally功能)

@Aspect

public class AfterFinallyExample {

 @After("com.xyz.myapp.SystemArchitecture.dataAccessOperation()")

  public void doReleaseLock() { // ... }}

5、    Around

在方法之前和之后都要加上

但是需要一个参数ProceedingJoinPoint,并者需要ObjectretVal = pjp.proceed();

和返回return retVal;

@Aspect

public class AroundExample {

 @Around("com.xyz.myapp.SystemArchitecture.businessService()")

  public ObjectdoBasicProfiling(ProceedingJoinPoint pjp) throws Throwable {

    // startstopwatch

    ObjectretVal = pjp.proceed();

    // stopstopwatch

    returnretVal; }}

 

(七)  Pointcut

当多个Advice个有相同的织入点。那么我们可以定义一个织入点集合,在需要使用的地方,调用就可以了。

例如:

@Aspect

@Component

public classLogInterceptor {

 

   @Pointcut("execution(public * com.wjt276.dao..*.*(..))")

   public void myMethod(){};

   

   @Before(value="myMethod()")

   public void before(){

      System.out.println("method start...");

    }

 

   @AfterReturning("myMethod()")

   public void afterReturning(){

      System.out.println("method after returning...");

    }}

注意:那个空方法,只是为了给Pointcut起个名字,以方便别处使用

 

(八)   annotatin方式的AOP实例

importorg.aspectj.lang.ProceedingJoinPoint;

importorg.aspectj.lang.annotation.AfterReturning;

importorg.aspectj.lang.annotation.Around;

importorg.aspectj.lang.annotation.Aspect;

importorg.aspectj.lang.annotation.Before;

importorg.aspectj.lang.annotation.Pointcut;

importorg.springframework.stereotype.Component;

 

@Aspect

@Component

public classLogInterceptor {

 

   @Pointcut("execution(public * com.wjt276.dao..*.*(..))")

   public void myMethod(){};

   

   @Before(value="myMethod()")

   public void before(){

      System.out.println("method start...");

    }

   

   @AfterReturning("myMethod()")

   public void afterReturning(){

      System.out.println("method after returning...");

    }

   

   @Around(value="myMethod()")

   public Objectaround(ProceedingJoinPoint pjp)throws Throwable{//切入方法的声明必须这样

      //因为@around需要传入一个参数ProceedingJoinPoint进行前后加逻辑

      System.out.println("method around start...");

      

      //在需要前后逻辑的中间加入下列语句。表示前后逻辑,可能会抛出异常Throwable。

      Object result =pjp.proceed();

      System.out.println("method around end...");

     return result;

    }

}

 

配置xml方式

xml方式是我们以后使用的比较多的,因为当切面类我们没有源代码时、当我们使用第三方的切面类时,我就不能使用annotation的方式,而且如果使用annotation方式一但程序编译后就不可以修改了。如果使用xml方式就不一样了,我们只需要修改xml文件就可以了。

xml方式与annotation的作用是一样。现在就是实例:

<?xml version="1.0"encoding="UTF-8"?>

<beansxmlns="http://www.springframework.org/schema/beans"

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

      xmlns:context="http://www.springframework.org/schema/context"

      xmlns:aop="http://www.springframework.org/schema/aop"

      xsi:schemaLocation="http://www.springframework.org/schema/beans

          http://www.springframework.org/schema/beans/spring-beans-2.5.xsd

          http://www.springframework.org/schema/context

          http://www.springframework.org/schema/context/spring-context-2.5.xsd

          http://www.springframework.org/schema/aop

          http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

   <context:annotation-config/>

   <context:component-scanbase-package="com.wjt276"/>   

   <bean id="logInterceptor"class="com.wjt276.aop.LogInterceptor"></bean>

   <aop:config>

       <!-- <aop:pointcut>在此处定义的pointcut是全局的pointcut可以供所有的aspect使用

            id:表示这个pointcut的名称,以方便使用-->

       <aop:pointcut id="myMethod"

                     expression="execution(public *com.wjt276.service..*.*(..))" />

       <!-- <aop:aspect>表示定义一个切面类(这需要Spring初始化加入其管理)

           id:切面类的名称,

           ref:引用哪个bean(需要使用<bean>标签初始化)-->

       <aop:aspect id="logAspect"ref="logInterceptor">

           <!-- 在此处定义的pointcut是全局的pointcut只供当前的aspect使用

                id:表示这个pointcut的名称,以方便使用 -->

           <aop:pointcut id="myMethod2"

                     expression="execution(public *com.wjt276.service..*.*(..))" />

           <!--

               定义advice时的参数

               method:切面逻辑的方法名称(切面类中的方法名)

               pointcut-ref:表示引用哪个pointcut(要求已经在上面定义好了)

               pointcut:定义一个pointcut    -->

           <aop:before method="before"pointcut-ref="myMethod"/>

           <aop:after-returningmethod="afterReturning" pointcut="execution(public *com.wjt276.service..*.*(..))"/>

       </aop:aspect>

   </aop:config>

</beans>

 

 

1.基本配置:
<?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-2.5.xsd
	                   http://www.springframework.org/schema/context
	                   http://www.springframework.org/schema/context/spring-context-2.5.xsd
	                   ">


<context:component-scan base-package="com.persia">
<!-- 开启组件扫描 -->
</context:component-scan>

<context:annotation-config>
<!--开启注解处理器-->
</context:annotation-config>

<!-- 使用注解,省去了propertity的xml配置,减少xml文件大小 -->
<bean id="personServiceAnno" class="com.persia.PersonServiceAnnotation"></bean>
<bean id="personDaoBeanAnno" class="com.persia.PersonDaoBean"></bean>
<bean id="personDaoBeanAnno2" class="com.persia.PersonDaoBean"></bean>

<!-- 自动注解 -->
<bean id="personServiceAutoInject" class="com.persia.PersonServiceAutoInject" autowire="byName"></bean>


<bean id="personService" class="com.persia.PersonServiceBean">
<!-- 由spring容器去创建和维护,我们只要获取就可以了 -->
</bean>

<bean id="personService2" class="com.persia.PersonServiceBeanFactory" factory-method="createInstance" lazy-init="true" 
      init-method="init"  destroy-method="destory">
<!-- 静态工厂获取bean -->
</bean>

<bean id="fac" class="com.persia.PersonServiceBeanInsFactory"></bean>
<bean id="personService3" factory-bean="fac" factory-method="createInstance" scope="prototype">
<!-- 实例工厂获取bean,先实例化工厂再实例化bean-->
</bean>


<!-- ref方式注入属性 -->
<bean id="personDao" class="com.persia.PersonDaoBean"></bean>
<bean id="personService4" class="com.persia.PersonServiceBean">
  <property name="personDao" ref="personDao"></property>
</bean>

<!-- 内部bean方式注入 -->
<bean id="personService5" class="com.persia.PersonServiceBean">
  <property name="personDao">
     <bean class="com.persia.PersonDaoBean"></bean>
  </property>
  <property name="name" value="persia"></property>
  <property name="age" value="21"></property>
  
  <property name="sets">
    <!-- 集合的注入 -->
     <set>
       <value>第一个</value>
       <value>第二个</value>
       <value>第三个</value>
     </set>
  </property>
  
  <property name="lists">
    <!-- 集合的注入 -->
    <list>
        <value>第一个l</value>
       <value>第二个l</value>
       <value>第三个l</value>
    </list>
    
  </property>
  
  <property name="properties">
    <props>
      <prop key="key1">value1</prop>
      <prop key="key2">value2</prop>
      <prop key="key3">value3</prop>
    </props>
  </property>
  
  <property name="map">
   <map>
      <entry key="key1" value="value-1"></entry>
      <entry key="key2" value="value-2"></entry>
      <entry key="key3" value="value-3"></entry>
   </map>
  </property>
</bean>

<bean id="personService6" class="com.persia.PersonServiceBean">
   <constructor-arg index="0" value="构造注入的name" ></constructor-arg>
   <!-- 基本类型可以不写type -->
   <constructor-arg index="1" type="com.persia.IDaoBean" ref="personDao">
   </constructor-arg> 
</bean>

</beans>
2.开启AOP:
<?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:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	                   http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
	                    http://www.springframework.org/schema/aop
	                   http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
	                   http://www.springframework.org/schema/context
	                   http://www.springframework.org/schema/context/spring-context-2.5.xsd
	                  ">

<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
<bean id="myInterceptor" class="com.persia.service.MyInterceptor"></bean>
<bean id="personServiceImpl" class="com.persia.service.impl.PersonServiceImpl"></bean>
</beans>
AOP的xml版本
<?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:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	                   http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
	                    http://www.springframework.org/schema/aop
	                   http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
	                   http://www.springframework.org/schema/context
	                   http://www.springframework.org/schema/context/spring-context-2.5.xsd
	                  ">

<aop:aspectj-autoproxy></aop:aspectj-autoproxy>

<bean id="personService" class="com.persia.service.impl.PersonServiceImpl"></bean>
<bean id="aspectBean" class="com.persia.service.MyInterceptor"></bean>

<aop:config>
   <aop:aspect id="myaop" ref="aspectBean">
 	<aop:pointcut id="mycut" expression="execution(* com.persia.service.impl.PersonServiceImpl.*(..))"/>
 	
	<aop:pointcut id="argcut" expression="execution(* com.persia.service.impl.PersonServiceImpl.*(..)) and args(name)"/>  <!-- args(name) 在xml中这样使用-->
 
	<aop:before pointcut-ref="mycut" method="doAccessCheck"  />
 	<aop:after-returning pointcut-ref="mycut" method="doAfterReturning"/>
   	<aop:after-throwing pointcut-ref="mycut" method="doThrowing"/>
   	<aop:after pointcut-ref="argcut" method="doAfter" arg-names="name"/>
 	<aop:around pointcut-ref="mycut" method="arround"/>
   </aop:aspect>
  
</aop:config>

</beans>

实现动态代理注意

因为Spring要实现AOP(面向切面编程),需要加入切面逻辑的类就会生成动态代理。在动态代理类中加入切面类从而实现面向切面编程,但生成动态代理存在以下注意事项:

1、  被动态代理的类如果实现了某一个接口,那么Spring就会利用JDK类库生成动态代理。

2、  如果被动态代理的类没有实现某一个接口,那么Spring就会利用CGLIB类库直接修改二进制码来生成动态代理(因为利用JDK生成动态代理的类必须实现一个接口),需要在项目中引用CGLIB类库

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值