• aop面向切面编程


       1)先创建一个业务逻辑类,放在cn.hd.service包下:

    @Service

    publicclass UserService {

    publicvoid save(){

       //System.out.println("写日志:开始保存");

       System.out.println("写保存的业务逻辑的代码...");

       //System.out.println("写日志:结束保存");

       }

    publicvoid update(){

       //System.out.println("写日志:开始保存");

       System.out.println("写修改的业务逻辑的代码...");

       //System.out.println("写日志:结束保存");

       }

    }

      2)再创建一个日志类,放在cn.hd.commons包下:

    package cn.hd.commons;

    publicclass LogUtils {

    publicvoid beforeMethod(){

       System.out.println("写日志:开始保存");

       }

    publicvoid afterMehtod(){

       System.out.println("写日志:结束保存");

       }

    }

    3)配置文件中配置AOP

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

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

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

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

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

    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.1.xsd

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

    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">

      <context:component-scan base-package="cn.hd.service"></context:component-scan>

      <!-- 日志类 -->

      <bean id="logUtils" class="cn.hd.commons.LogUtils"></bean>

       <!-- AOP的配置 -->

       <aop:config>

         <!-- 定义一个切面,ref引用的切面类是上面配置的bean的日志类logUtils -->

          <aop:aspect ref="logUtils">

          <!-- 定义一个切入点, * cn.h

    d.service.*.*(..):表示cn.hd.service包下的任意类任意方法作为切入点。第一个星号表示方法任意返回值-->

             <aop:pointcut expression="execution(* cn.hd.service.*.*(..))" id="logPointPut"/>

            <!-- 前置通知:表示调用切入点的方法之前,自动去通知(调用)切面中的beforeMethod方法 -->

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

                    <!-- 后置通知:表示调用切入点的方法之后,自动去通知(调用)切面中的afterMehtod方法 -->

             <aop:after method="afterMehtod" pointcut-ref="logPointPut"/>

          </aop:aspect>

       </aop:config>

    </beans>


  • 相关阅读:
    对于bilibili主页head部分的代码的总结以及疑问。
    小项目使用框架(B/S),简单实现mvc分离
    petshop4学习_重构DataList实现分页
    照书抄了个小的sniffer。不过有问题测试不能通过,请求各位帮帮我
    《灵魂的迷茫》
    vs2005中gridview的RowCommand事件
    快速得到google的Gmail(已申请的免看)
    命令行下重启/启动停止IIS服务器的命令
    ES6之const命令
    不容忽视的js面试题
  • 原文地址:https://www.cnblogs.com/joyous-day/p/6136384.html
Copyright © 2020-2023  润新知