Spring AOP定义AfterReturning增加实例分析

 更新时间:2020年01月07日 08:44:11   作者:cakincqm  
这篇文章主要介绍了Spring AOP定义AfterReturning增加,结合实例形式分析了Spring面相切面AOP定义AfterReturning增加相关操作技巧与使用注意事项,需要的朋友可以参考下

本文实例讲述了Spring AOP定义AfterReturning增加。分享给大家供大家参考,具体如下:

一 配置

<?xml version="1.0" encoding="GBK"?>
<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-4.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context-4.0.xsd
   http://www.springframework.org/schema/aop
   http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
   <!-- 指定自动搜索Bean组件、自动搜索切面类 -->
   <context:component-scan
      base-package="org.crazyit.app.service
      ,org.crazyit.app.aspect">
      <context:include-filter type="annotation"
        expression="org.aspectj.lang.annotation.Aspect" />
   </context:component-scan>
   <!-- 启动@AspectJ支持 -->
   <aop:aspectj-autoproxy />
</beans>

二 切面类

package org.crazyit.app.aspect;
import org.aspectj.lang.annotation.*;
import org.aspectj.lang.*;
// 定义一个切面
@Aspect
public class LogAspect
{
  // 匹配org.crazyit.app.service.impl包下所有类的、
  // 所有方法的执行作为切入点
  @AfterReturning(returning="rvt"
    , pointcut="execution(* org.crazyit.app.service.impl.*.*(..))")
  // 声明rvt时指定的类型会限制目标方法必须返回指定类型的值或没有返回值
  // 此处将rvt的类型声明为Object,意味着对目标方法的返回值不加限制
  public void log(Object rvt)
  {
    System.out.println("获取目标方法返回值:" + rvt);
    System.out.println("模拟记录日志功能...");
  }
}

三 接口

Hello

package org.crazyit.app.service;
public interface Hello {
   // 定义一个简单方法,模拟应用中的业务逻辑方法
   void foo();
   // 定义一个addUser()方法,模拟应用中的添加用户的方法
   int addUser(String name, String pass);
}

World

package org.crazyit.app.service;
public interface World {
   // 定义一个简单方法,模拟应用中的业务逻辑方法
   public void bar();
}

四 实现类

HelloImpl

package org.crazyit.app.service.impl;
import org.springframework.stereotype.Component;
import org.crazyit.app.service.*;
@Component("hello")
public class HelloImpl implements Hello {
  // 定义一个简单方法,模拟应用中的业务逻辑方法
  public void foo() {
    System.out.println("执行Hello组件的foo()方法");
  }
  // 定义一个addUser()方法,模拟应用中的添加用户的方法
  public int addUser(String name, String pass) {
    System.out.println("执行Hello组件的addUser添加用户:" + name);
    return 20;
  }
}

WorldImpl

package org.crazyit.app.service.impl;
import org.springframework.stereotype.Component;
import org.crazyit.app.service.*;
@Component("world")
public class WorldImpl implements World {
  // 定义一个简单方法,模拟应用中的业务逻辑方法
  public void bar() {
    System.out.println("执行World组件的bar()方法");
  }
}

五 测试类

package lee;
import org.springframework.context.*;
import org.springframework.context.support.*;
import org.crazyit.app.service.*;
public class BeanTest {
  public static void main(String[] args) {
    // 创建Spring容器
    ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
    Hello hello = ctx.getBean("hello", Hello.class);
    hello.foo();
    hello.addUser("孙悟空", "7788");
    World world = ctx.getBean("world", World.class);
    world.bar();
  }
}

六 测试结果

执行Hello组件的foo()方法
获取目标方法返回值:null
模拟记录日志功能...
执行Hello组件的addUser添加用户:孙悟空
获取目标方法返回值:20
模拟记录日志功能...
执行World组件的bar()方法
获取目标方法返回值:null
模拟记录日志功能...

更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。

相关文章

  • Spring通过Java配置集成Tomcat的方法

    Spring通过Java配置集成Tomcat的方法

    这篇文章主要介绍了Spring通过Java配置集成Tomcat的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-04-04
  • Java.SE数组的一些常见练习题

    Java.SE数组的一些常见练习题

    数组可以看成是相同类型元素的一个集合,在内存中是一段连续的空间,这篇文章主要给大家介绍了关于Java.SE数组的一些常见练习题,文中通过代码介绍的非常详细,需要的朋友可以参考下
    2024-02-02
  • JavaWeb页面中防止点击Backspace网页后退情况

    JavaWeb页面中防止点击Backspace网页后退情况

    当键盘敲下后退键(Backspace)后怎么防止网页后退情况呢?今天小编通过本文给大家详细介绍下,感兴趣的朋友一起看看吧
    2016-11-11
  • Spring中@EnableScheduling实现定时任务代码实例

    Spring中@EnableScheduling实现定时任务代码实例

    这篇文章主要介绍了Spring中@EnableScheduling实现定时任务代码实例,@EnableScheduling 注解开启定时任务功能,可以将多个方法写在一个类,也可以分多个类写,当然也可以将方法直接写在上面ScheddulConfig类中,需要的朋友可以参考下
    2024-01-01
  • Java实现顺序表的增删查改功能

    Java实现顺序表的增删查改功能

    这篇文章主要介绍了Java实现顺序表的增删查改功能,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-04-04
  • Spring实战之Bean销毁之前的行为操作示例

    Spring实战之Bean销毁之前的行为操作示例

    这篇文章主要介绍了Spring实战之Bean销毁之前的行为操作,结合实例形式分析了spring在bean销毁之前的行为相关设置与使用技巧,需要的朋友可以参考下
    2019-11-11
  • SpringBoot中JPA实现Sort排序的三种方式小结

    SpringBoot中JPA实现Sort排序的三种方式小结

    这篇文章主要介绍了SpringBoot中JPA实现Sort排序的三种方式小结,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-11-11
  • 详解如何在Java中实现堆排序算法

    详解如何在Java中实现堆排序算法

    这篇文章主要为大家详细介绍了如何利用Java实现堆排序算法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • MyBatis的动态拦截sql并修改

    MyBatis的动态拦截sql并修改

    因工作需求,需要根据用户的数据权限,来查询并展示相应的数据,那么就需要动态拦截sql,本文就来介绍了MyBatis的动态拦截sql并修改,感兴趣的可以了解一下
    2023-11-11
  • Java并发编程中使用Executors类创建和管理线程的用法

    Java并发编程中使用Executors类创建和管理线程的用法

    这篇文章主要介绍了Java并发编程中使用Executors类创建和管理线程的用法,文中举了用其启动线程和设置线程优先级的例子,需要的朋友可以参考下
    2016-03-03

最新评论