IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringAOP实现方式 -> 正文阅读

[Java知识库]SpringAOP实现方式

SpringAOP实现方式1

  1. 导入Spring依赖
    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.4</version>
        </dependency>
    </dependencies>
  1. 模拟用户和实现类
package com.bkms.service;

public interface UserService {
    public void m1();
    public void m2();
    public void m3();
    public void m4();
}
package com.bkms.service;

public class UserServiceImpl implements UserService {
    public void m1() {
        System.out.println("m1");
    }

    public void m2() {
        System.out.println("m2");
    }

    public void m3() {
        System.out.println("m3");
    }

    public void m4() {
        System.out.println("m4");
    }
}
  1. 编写切入的方法
package com.bkms.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice {
    /**
     * 前置日志:记录执行对象名和方法名
     * @param method 目标对象的方法
     * @param objects 目标对象的参数
     * @param o 目标对象
     * @throws Throwable
     */
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println("Object "+o.getClass().getName());
        System.out.println("Method "+method.getName()+" has been execution");
    }
}
package com.bkms.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
    /**
     * 后置日志:记录执行方法名和返回结果
     * @param returnValue 返回结果
     * @param method 执行方法的反射
     * @param objects 方法参数
     * @param o1 执行方法的主体:目标对象
     * @throws Throwable
     */
    public void afterReturning(Object returnValue, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("execute "+method.getName()+" return "+returnValue);
    }
}
  1. 注册bean,使用API接口
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">
    <!--注册bean-->

    <!--UserServiceImpl-->
    <bean id="userService" class="com.bkms.service.UserServiceImpl"/>
    <!--Log-->
    <bean id="log" class="com.bkms.log.Log"/>
    <!--AfterLog-->
    <bean id="afterLog" class="com.bkms.log.AfterLog"/>

    <!--
    方式1:使用原生的API接口
    配置AOP:导入AOP的约束
    expression:表达式
    execution:执行位置
    -->
    <aop:config>
        <!--切入点:原生业务方法-->
        <aop:pointcut id="pointcut" expression="execution(* com.bkms.service.UserServiceImpl.*(..))"/>
        <!--执行环绕增加:切入方法-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>
</beans>
  1. 测试
import com.bkms.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //动态代理需要代理接口,不能代理实现类,所以UserService接口作为反射传入并获得接口反射实例
        //注册bean时class需要传入接口实现类,因为接口不能new
        UserService userService = context.getBean("userService", UserService.class);
        userService.m2();
    }
}

项目结构
在这里插入图片描述

SpringAOP实现方式2

  1. 编写自定义类
package com.bkms.customization;

public class Customization {
    /**
     * 方法执行前
     */
    public void beforeExecute(){
        System.out.println("before execute");
    }

    /**
     * 方法执行后
     */
    public void afterExecute(){
        System.out.println("after execute");
    }
}
  1. 配置bean
    <!--
    方式2:自定义类
    -->
    <bean id="custom" class="com.bkms.customization.Customization"/>

    <aop:config>
        <aop:aspect id="custom">
            <!--切入点-->
            <aop:pointcut id="point" expression="execution(* com.bkms.customization.*(..))"/>
        </aop:aspect>
    </aop:config>
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-06 12:48:23  更:2022-03-06 12:49:32 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:59:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码