美文网首页
Maven项目&Spring AOP基础(二)

Maven项目&Spring AOP基础(二)

作者: 乘风破浪的姐姐 | 来源:发表于2021-12-31 14:40 被阅读0次

    AOP(Aspect Oriented Programming):面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是Spring框架中的一个重要内容。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

    Aop在Spring中的作用

    提供声明式事务;允许用户自定义切面
    以下名词了解下:

    横切关注点:跨越应用程序多个模块的方法或功能。即是,与业务逻辑无关的,但是需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等。
    切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。
    通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。
    目标(Target):被通知对象。
    代理(Proxy):向目标对象应用通知之后创建的对象。
    切入点(PointCut):切面通知 执行的 “地点”的定义。
    连接点(JointPoint):与切入点匹配的执行点。

    SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice


    image.png

    即 Aop 在 不改变原有代码的情况下 , 去增加新的功能 .

    使用AOP织入,需要在pom.xml中导入

    <dependency>
       <groupId>org.aspectj</groupId>
       <artifactId>aspectjweaver</artifactId>
       <version>1.9.4</version>
    </dependency>
    

    实现方式一:通过 Spring API 实现

    业务接口类:UserService

    public interface UserService {
        void add();
        void update();
        void query();
        void delete();
    }
    

    业务接口实现类:UserServiceImpl

    public class UserServiceImpl implements UserService {
        public void add() {
            System.out.println("新增用户");
        }
    
        public void update() {
            System.out.println("修改用户");
        }
    
        public void query() {
            System.out.println("查询用户");
        }
    
        public void delete() {
            System.out.println("删除用户");
    
        }
    }
    

    日志增强类:一个前置增强 MyBeforeLog.class、一个后置增强MyAfterLog.class

    import org.springframework.aop.MethodBeforeAdvice;
    import java.lang.reflect.Method;
    
    public class MyBeforeLog implements MethodBeforeAdvice {
    
        public void before(Method method, Object[] objects, Object o) throws Throwable {
            System.out.println( o.getClass().getName()+"的方法" +method.getName()+"被执行了。");
        }
    }
    
    import org.springframework.aop.AfterReturningAdvice;
    import java.lang.reflect.Method;
    
    public class MyAfterLog implements AfterReturningAdvice {
        public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
            System.out.println(o1.getClass().getName()+"的方法"+method.getName()+"被执行了。");
        }
    }
    

    spring配置文件beans.xml中注册bean , 并实现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:aop="http://www.springframework.org/schema/aop"
           xmlns:p="http://www.springframework.org/schema/p"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd">
    
        <bean id="afterLog" class="com.sc.dao.MyAfterLog"/>
        <bean id="beforeLog" class="com.sc.dao.MyBeforeLog"/>
        <bean id="userServiceImpl" class="com.sc.dao.UserServiceImpl"/>
    
        <aop:config>
            <aop:pointcut id="pointcut" expression="execution(* com.sc.dao.UserServiceImpl.*(..))"/>
            <aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/>
            <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
        </aop:config>
     
    </beans>
    

    测试类:

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class MyTest {
        public static void main(String[] args) {
            ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
            //不能用接口的实现类UserServiceImpl,而因该用共同的接口UserService。
            UserService userServiceImpl = context.getBean("userServiceImpl", UserService.class);
            userServiceImpl.add();
    
            userServiceImpl.delete();
    
        }
    }
    

    输出结果:

    com.sc.dao.UserServiceImpl的方法add被执行了。
    新增用户
    com.sc.dao.UserServiceImpl的方法add被执行了。
    com.sc.dao.UserServiceImpl的方法delete被执行了。
    删除用户
    com.sc.dao.UserServiceImpl的方法delete被执行了。
    

    实现方式二:自定义类来实现AOP

    自定义切入类:PointCut

    public class PointCut {
        public void beforeLog(){
            System.out.println("---------方法执行前---------");
        }
    
        public void afterLog(){
            System.out.println("---------方法执行后---------");
        }
    }
    

    spring配置文件beans.xml中注册bean , 并实现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:aop="http://www.springframework.org/schema/aop"
           xmlns:p="http://www.springframework.org/schema/p"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd">
    
     
        <bean id="userServiceImpl" class="com.sc.dao.UserServiceImpl"/>
      
         <bean id="pointcut" class="com.sc.dao2.PointCut"/>
        <aop:config>
            <aop:aspect ref="pointcut">
                <aop:pointcut id="point" expression="execution(* com.sc.dao.UserServiceImpl.*(..))"/>
                <aop:before method="beforeLog" pointcut-ref="point"/>
                <aop:after method="afterLog" pointcut-ref="point"/>
            </aop:aspect>
        </aop:config>
      
    </beans>
    

    测试类:

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class MyTest {
        public static void main(String[] args) {
            ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
            //不能用接口的实现类UserServiceImpl,而因该用共同的接口UserService。
            UserService userServiceImpl = context.getBean("userServiceImpl", UserService.class);
            userServiceImpl.add();
    
            userServiceImpl.delete();
    
        }
    }
    

    输出结果:

    ---------方法执行前---------
    新增用户
    ---------方法执行后---------
    ---------方法执行前---------
    删除用户
    ---------方法执行后---------
    

    实现方式三:使用注解实现

    编写注解实现的增强类PointCutAnnotation

    import org.aspectj.lang.ProceedingJoinPoint;
    import org.aspectj.lang.annotation.After;
    import org.aspectj.lang.annotation.Around;
    import org.aspectj.lang.annotation.Aspect;
    import org.aspectj.lang.annotation.Before;
    
    @Aspect
    public class PointCutAnnotation {
    
        @Before("execution(* com.sc.dao.UserServiceImpl.*(..))")
        public void before(){
            System.out.println("---------方法执行前log---------");
        }
    
        @After("execution(* com.sc.dao.UserServiceImpl.*(..))")
        public void after(){
            System.out.println("---------方法执行后log---------");
        }
    
        @Around("execution(* com.sc.dao.UserServiceImpl.*(..))")
        public void around(ProceedingJoinPoint joinPoint) throws Throwable {
            System.out.println("---------环绕前Log---------"+joinPoint.getSignature());
            Object proceed = joinPoint.proceed();
            System.out.println("---------环绕后Log---------");
            System.out.println(proceed);
        }
    }
    

    在Spring配置文件beans.xml中,注册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:aop="http://www.springframework.org/schema/aop"
           xmlns:p="http://www.springframework.org/schema/p"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd">
     
        <bean id="userServiceImpl" class="com.sc.dao.UserServiceImpl"/>
     
        <bean id="pointcuts" class="com.sc.dao3.PointCutAnnotation"/>
        <aop:aspectj-autoproxy/>
     
    </beans>
    

    该配置文件中通过aop命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面

    测试类:

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class MyTest {
        public static void main(String[] args) {
            ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
            //不能用接口的实现类UserServiceImpl,而因该用共同的接口UserService。
            UserService userServiceImpl = context.getBean("userServiceImpl", UserService.class);
            userServiceImpl.add();
    
            userServiceImpl.delete();
    
        }
    }
    

    输出结果:

    ---------环绕前Log---------void com.sc.dao.UserService.add()
    ---------方法执行前log---------
    新增用户
    ---------环绕后Log---------
    null
    ---------方法执行后log---------
    ---------环绕前Log---------void com.sc.dao.UserService.delete()
    ---------方法执行前log---------
    删除用户
    ---------环绕后Log---------
    null
    ---------方法执行后log---------
    

    相关文章

      网友评论

          本文标题:Maven项目&Spring AOP基础(二)

          本文链接:https://www.haomeiwen.com/subject/teuiqrtx.html