• Spring对AOP的支持


    Spring对AOP的支持(采用Annotation的方式)

    首先谈一下静态代理与动态代理的个人理解。

    平时为了开发不破坏原始业务层操作,我们使用代理类来解决,即Proxy.

    在使用的时候基本上是调用了原始业务层的操作,然后在代理类里面加入想要注入的新方法,然后在各个原业务方法前添加自己想要的新方法。但是如果每个业务都想添加,那使用静态代理类,就会十分麻烦,所以我们引入动态代理类来实现。Spring使用的方法是AOP,即面向切面的编程。

    AOP术语:


    解释:

    Cross cutting concern:横切性关注点

    Aspect:切面

    SecurityHandler:是一个切面类

    这个类里面方法的具体实现称为Advice

    Advice可以加在方法之前或者之后…

    应用指定范围(在哪些类上应用,即过滤条件)---Pointcut

    Joinpoint连接点,支持方法连接点。

    addUser是目标对象,真实实现类。

    将切面方法应用到目标对象上,被称为植入----weave

    Target Object目标对象

    Proxy代理对象

    操作方法

    1、  引入spring依赖库

    注意:如果JDK版本在1.6以上,spring版本建议3.0,有时候会出问题。

    PS:出现error at ::0can't find referenced pointcut...这样的错误原因是:如果你用的JDK版本是1.6的话,而引用的aspectjrt.jar是spring-2.0中包含的jar包的情况下就会报这样的错误。 
    解决的办法就是下载最新的aspectjrt的jar包即可aspectj-1.6.6.jar(需要解压,然后替换原来的) ,或者使用spring3.0中的包!

    继续:

             *SPRING_HOME/dist/spring.jar

             *SPRING_HOME/lib/jakarta-commons/commons-logging.jar

             *SPRING_HOME/lib/log4j/log4j-1.2.14.jar

             *SPRING_HOME/lib/aspectj/*.jar

            

    2、  搭建目录,及详细文件。

    SRC下的几个文件:

    Client.java:

    package com.env.standard.aop1;

     

    import org.springframework.beans.factory.BeanFactory;

    import org.springframework.context.support.ClassPathXmlApplicationContext;

     

    public class Clint {

     

        public static void main(String[] args) {

           BeanFactory factory=new ClassPathXmlApplicationContext("applicationContext.xml");

           UserManager userManager=(UserManager)factory.getBean("UserManager");

           userManager.addUser("robin", "123");

     

        }

     

    }

    SecurityHandler.java

    package com.env.standard.aop1;

     

    import org.aspectj.lang.annotation.Aspect;

    import org.aspectj.lang.annotation.Before;

    import org.aspectj.lang.annotation.Pointcut;

     

     

    /*

     * 定义Aspect

     * @author: robin

     */

    @Aspect

    public class SecurityHandler {

        /*

         *定义 pointcut,pointcut的方法名称allAddMethod(),此方法没有参数和返回值,只是一个标识

         *

         */

        @Pointcut("execution(* add*(..))")

     

        private void allAddMethod(){};

        /*

         * 定义advice,标识在何处植入此方法。

         */

        @Before("allAddMethod()")

        public void checkSecurity()

        {

           System.out.println("--------checkSecrity()----------");

        }

     

    }

     

    UserManager.java

    package com.env.standard.aop1;

     

    public interface UserManager {

     

        public void addUser(String username, String password);

       

        public void deleteUser(int id);

       

        public void modifyUser(int id, String username, String password);

       

        public String findUserById(int id);

    }

     

    UserManagerImpl.java

    package com.env.standard.aop1;

     

     

    public class UserManagerImpl implements UserManager {

     

        public void addUser(String username, String password) {

           System.out.println("-------UserManagerImpl.addUser()----------");

        }

     

        public void deleteUser(int id) {

           System.out.println("-------UserManagerImpl.deleteUser()----------");

        }

     

        public String findUserById(int id) {

           System.out.println("-------UserManagerImpl.findUserById()----------");

           return null;

        }

     

        public void modifyUser(int id, String username, String password) {

           System.out.println("-------UserManagerImpl.modifyUser()----------");

        }

       

    //  private void checkSecurity() {

    //     System.out.println("----------checkSecurity()---------------");

    //  }

    }

     

    applicationContext.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:aop="http://www.springframework.org/schema/aop"

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

             xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-2.0.xsd

              http://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-2.0.xsd

              http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

             

            <aop:aspectj-autoproxy/>

            <bean id="Security" class="com.env.standard.aop1.SecurityHandler"></bean>

            <bean id="UserManager" class="com.env.standard.aop1.UserManagerImpl"></bean>

    </beans>

     Spring对AOP的支持(采用静态配置文件的方式)

    applicationContext.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:aop="http://www.springframework.org/schema/aop"
             xmlns:tx="http://www.springframework.org/schema/tx"
             xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
               http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
               http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
        
        <bean id="securityHandler" class="com.bjsxt.spring.SecurityHandler"/>           
        
        <bean id="userManager" class="com.bjsxt.spring.UserManagerImpl"/>
        
        <aop:config>
            <aop:aspect id="security" ref="securityHandler">
                <aop:pointcut id="allAddMethod" expression="execution(* com.bjsxt.spring.UserManagerImpl.add*(..))"/>
                <aop:before method="checkSecurity" pointcut-ref="allAddMethod"/>
            </aop:aspect>
        </aop:config>    
    </beans>
    PS:

    spring对AOP的支持

    1、如果目标对象实现了接口,默认情况下会采用JDK的动态代理实现AOP
    2、如果目标对象实现了接口,可以强制使用CGLIB实现AOP
    3、如果目标对象没有实现了接口,必须采用CGLIB库,spring会自动在JDK动态代理和CGLIB之间转换


    如何强制使用CGLIB实现AOP?
        * 添加CGLIB库,SPRING_HOME/cglib/*.jar
        * 在spring配置文件中加入<aop:aspectj-autoproxy proxy-target-class="true"/>
        
    JDK动态代理和CGLIB字节码生成的区别?
        * JDK动态代理只能对实现了接口的类生成代理,而不能针对类
        * CGLIB是针对类实现代理,主要是对指定的类生成一个子类,覆盖其中的方法
          因为是继承,所以该类或方法最好不要声明成final

  • 相关阅读:
    Codeforces Round #372 (Div. 1) B. Complete The Graph (枚举+最短路)
    HDU6430 Problem E. TeaTree【dsu on tree】
    HDU4358 Boring counting【dsu on tree】
    HDU6191 Query on A Tre【dsu on tree + 01字典树】
    2019 ICPC Asia Yinchuan Regional
    广义后缀自动机 例题
    2017-2018 ACM-ICPC Northern Eurasia (Northeastern European Regional) Contest (NEERC 17)
    BZOJ3238 [Ahoi2013]差异 【SAM or SA】
    HDU4622 Reincarnation【SAM】
    BZOJ1396 识别子串【SAM+SegmentTree】
  • 原文地址:https://www.cnblogs.com/lowerCaseK/p/spring_aop.html
Copyright © 2020-2023  润新知