Spring Boot1.5.4 AOP实例
原文:https://github.com/x113773/testall/issues/12
1. 还是首先添加依赖(使用当前springboot的默认版本)
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
```
- 参考下面[官方文档](http://docs.spring.io/spring-boot/docs/1.5.4.RELEASE/reference/htmlsingle/)的部分配置说明,可见aop是默认开启的,自动添加了@EnableAspectJAutoProxy注解
```
# AOP
spring.aop.auto=true # Add @EnableAspectJAutoProxy.
spring.aop.proxy-target-class=false # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).
```
2. 编写一个切面类,[AspectAdviceConfig.java](https://github.com/x113773/testall/blob/master/src/main/java/com/ansel/testall/aop/AspectAdviceConfig.java),里面定义了一个切点指示器和各种通知(Advice,也译作 增强)
```
package com.ansel.testall.aop;
import java.lang.reflect.Method;
import java.util.Arrays;
import javax.servlet.http.HttpServletRequest;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.DeclareParents;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
@Aspect
@Component
public class AspectAdviceConfig {
private Logger logger = LoggerFactory.getLogger(this.getClass());
/**
* 定义切点指示器:com.ansel.testall.aop包下,带@RestController注解的类。
*/
@Pointcut("execution(* com.ansel.testall.aop..*(..)) and @annotation(org.springframework.web.bind.annotation.RestController)")
public void myPointcut() {
}
/**
* 前置通知,在目标方法完成之后调用通知,此时不会关 心方法的输出是什么
*/
@Before("myPointcut()")
public void beforeAdvice() {
System.out.println("Before--通知方法会在目标方法调用之前执行");
}
/**
* 后置通知,在目标方法完成之后调用通知,此时不会关 心方法的输出是什么
*/
@After("myPointcut()")
public void afterAdvice() {
System.out.println("After--通知方法会在目标方法返回或抛出异常后调用");
}
/**
* 返回通知,在目标方法成功执行之后调用,可以获得目标方法的返回值,但不能修改(修改也不影响方法的返回值)
*
* @param jp
* JoinPoint接口,可以获得连接点的一些信息
*
* @param retVal
* 目标方法返回值,和jp一样会由spring自动传入
*/
@AfterReturning(returning = "retVal", pointcut = "myPointcut()")
public void afterReturningAdvice(JoinPoint jp, Object retVal) {
retVal = retVal + " (@AfterReturning can read the return value, but it can't change the value!)";
System.out.println("AfterReturning--通知方法会在目标方法返回后调用; retVal = " + retVal);
System.out.println(jp.toLongString());
}
/**
* 异常通知,在目标方法抛出异常后调用通知
*/
@AfterThrowing("myPointcut()")
public void afterThrowingAdvice() {
System.out.println("AfterThrowing--通知方法会在目标方法抛出异常后调用");
}
/**
* 环绕通知,可以在目标方法调用前后,自定义执行内容。可以修改目标方法的返回值
*
* @param pjp
*/
@Around("myPointcut()")
public Object aroundAdvice(ProceedingJoinPoint pjp) {
Object retVal = null;
try {
System.out.println("Around--目标方法调用之前执行");
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
HttpServletRequest request = attributes.getRequest();
MethodSignature signature = (MethodSignature) pjp.getSignature();
Method method = signature.getMethod(); // 获取被拦截的方法
String methodName = method.getName(); // 获取被拦截的方法名
logger.info("requset method name is: " + methodName);
logger.info("request URL is: " + request.getRequestURL().toString());
logger.info("request http method: " + request.getMethod());
logger.info("request arguments are: " + Arrays.toString(pjp.getArgs()));
retVal = pjp.proceed();
retVal = retVal + " (@Around can change the return value!)";
System.out.println("Around--目标方法返回后调用");
} catch (Throwable e) {
System.out.println("Around--目标方法抛出异常后调用");
}
return retVal;
}
}
```
3. 通过Advice可以某些方法增加一些功能,若要为某个对象增加新的方法,则要用到Introduction,编写另外一个切面AspectIntroductionConfig.java
```
package com.ansel.testall.aop;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclareParents;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class AspectIntroductionConfig {
/**
* DeclareParents注解所标注的静态属性指明了要引入的接口;
* value属性指定了哪种类型的bean要引入该接口;
* defaultImpl属性指定了为引入功能提供实现的类。
*/
@DeclareParents(value = "com.ansel.testall.aop.AopService+", defaultImpl = IntroductionServiceImpl.class)
public static IntroductionService introductionService;
}
```
4. 编写两个接口AopService、IntroductionService,和2个实现AopServiceImpl、IntroductionServiceImpl
```
package com.ansel.testall.aop;
public interface AopService {
String myOwnMethod();
}
/***********************************/
package com.ansel.testall.aop;
public interface IntroductionService {
String IntroductionMethod();
}
/***********************************/
package com.ansel.testall.aop;
import org.springframework.stereotype.Service;
@Service
public class AopServiceImpl implements AopService {
@Override
public String myOwnMethod() {
return "this method is from AopService";
}
}
/***********************************/
package com.ansel.testall.aop;
import org.springframework.stereotype.Service;
@Service
public class IntroductionServiceImpl implements IntroductionService {
@Override
public String IntroductionMethod() {
return "this method from Introduction.";
}
}
```
5. 编写一个切点实例[AopController.java](https://github.com/x113773/testall/blob/master/src/main/java/com/ansel/testall/aop/AopController.java) (其实就是个普通的controller)
```
package com.ansel.testall.aop;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class AopController {
/**
* 只注入AopService
*/
@Autowired
AopService aopService;
/**
* 测试AOP通知(Advice,也译作 增强)
*
* @return
*/
@RequestMapping(value = "/aop", method = RequestMethod.GET)
public String testAop() {
return "this is a AOP Advice test.";
}
/**
* 测试AOP引入(Introduction)
*
* @return
*/
@RequestMapping(value = "/aop/introdution", method = RequestMethod.GET)
public String testAopIntroduction() {
System.out.println(aopService.myOwnMethod());
//接口类型转换
IntroductionService introductionService = (IntroductionService) aopService;
System.out.println(introductionService.IntroductionMethod());
return "this is a AOP Introduction test.";
}
}
```
4. 启动项目,触发 localhost:8080/aop 请求,控制台输出结果如下:
```
Around--目标方法调用之前执行
2017-07-03 17:33:15.494 INFO 8548 --- [nio-8443-exec-7] tConfig$$EnhancerBySpringCGLIB$$5f4562fb : requset method name is: testAOP
2017-07-03 17:33:15.495 INFO 8548 --- [nio-8443-exec-7] tConfig$$EnhancerBySpringCGLIB$$5f4562fb : request URL is: https://localhost:8443/aop
2017-07-03 17:33:15.495 INFO 8548 --- [nio-8443-exec-7] tConfig$$EnhancerBySpringCGLIB$$5f4562fb : request http method: GET
2017-07-03 17:33:15.495 INFO 8548 --- [nio-8443-exec-7] tConfig$$EnhancerBySpringCGLIB$$5f4562fb : request arguments are: []
Before--通知方法会在目标方法调用之前执行
Around--目标方法返回后调用
After--通知方法会在目标方法返回或抛出异常后调用
AfterReturning--通知方法会在目标方法返回后调用; retVal = this is a AOP test. (@Around can change the return value!) (@AfterReturning can read the return value, but it can't change the value!)
execution(public java.lang.String com.ansel.testall.aop.AOPController.testAOP())
```
页面返回结果如下:
`this is a AOP test. (@Around can change the return value!)`
触发 localhost:8080/aop/introdution 请求,控制台输出结果如下:

---
注:
`@Pointcut("execution(* com.ansel.testall.aop..*(..)) and @annotation(org.springframework.web.bind.annotation.RestController)")`
当我使用and操作符连接上面两个切点指示器,没有任何问题(把注解RestController换成RequestMapping也没问题)
然而,当我使用&&操作符连接上面两个切点指示器时,完全没有触发AspectJ,切面没有织入任何连接点(把注解RestController换成RequestMapping就没问题)
```
/**
* OK
*/
@Pointcut("execution(* com.ansel.testall.aop..*(..)) and @annotation(org.springframework.web.bind.annotation.RestController)")
/**
* not OK
*/
@Pointcut("execution(* com.ansel.testall.aop..*(..)) && @annotation(org.springframework.web.bind.annotation.RestController)")
/**
* OK
*/
@Pointcut("execution(* com.ansel.testall.aop..*(..)) and @annotation(org.springframework.web.bind.annotation.RequestMapping)")
/**
* OK
*/
@Pointcut("execution(* com.ansel.testall.aop..*(..)) && @annotation(org.springframework.web.bind.annotation.RequestMapping)")
```
Spring Boot1.5.4 AOP实例的更多相关文章
- Spring学习笔记IOC与AOP实例
Spring框架核心由两部分组成: 第一部分是反向控制(IOC),也叫依赖注入(DI); 控制反转(依赖注入)的主要内容是指:只描述程序中对象的被创建方式但不显示的创建对象.在以XML语言描述的配置文 ...
- Java框架spring 学习笔记(十二):aop实例操作
使用aop需要在网上下载两个jar包: aopalliance.jar aspectjweaver.jar 为idea添加jar包,快捷键ctrl+shift+alt+s,打开添加jar包的对话框,将 ...
- Spring Aop实例@Aspect、@Before、@AfterReturning@Around 注解方式配置
用过spring框架进行开发的人,多多少少会使用过它的AOP功能,都知道有@Before.@Around和@After等advice.最近,为了实现项目中的输出日志和权限控制这两个需求,我也使用到了A ...
- Spring.Net AOP实例
Spring.Net和Log4net.NUnit.NHibernate一样,也是先从Java中流行开来,然后移植到了.NET当中,形成了.NET版的Spring框架.其官方网站为:http://www ...
- Spring Aop实例@Aspect、@Before、@AfterReturning@Around 注解方式配置(转)
用过spring框架进行开发的人,多多少少会使用过它的AOP功能,都知道有@Before.@Around和@After等advice.最近,为了实现项目中的输出日志和权限控制这两个需求,我也使用到了A ...
- Spring的IOC和AOP之深剖
今天,既然讲到了Spring 的IOC和AOP,我们就必须要知道 Spring主要是两件事: 1.开发Bean:2.配置Bean.对于Spring框架来说,它要做的,就是根据配置文件来创建bean实例 ...
- Spring(6)—— AOP
AOP(Aspect-OrientedProgramming)面向切面编程,与OOP完全不同,使用AOP编程系统被分为切面或关注点,而不是OOP中的对象. AOP的引入 在OOP面向对象的使用中,无可 ...
- 转-Spring Framework中的AOP之around通知
Spring Framework中的AOP之around通知 http://blog.csdn.net/xiaoliang_xie/article/details/7049183 标签: spring ...
- spring之初识Ioc&Aop
Spring框架的作用 spring是一个轻量级的企业级框架,提供了ioc容器.Aop实现.dao/orm支持.web集成等功能,目标是使现有的java EE技术更易用,并促进良好的编程习惯. Spr ...
随机推荐
- php对文件操作(读、写、)的基础知识(详细)
文件位置如下图所示: 1.判断是文件还是目录 var_dump(filetype("./aa/bb/cc.txt")); 输出: string(4) "file" ...
- Node.js入门第一天
一.Node.js简介 1.1 简介 V8引擎本身就是用于Chrome浏览器的JS解释部分,但是Ryan Dahl这哥们,鬼才般的,把这个V8搬到了服务器上,用于做服务器的软件. Node.js是一个 ...
- 3.Java 加解密技术系列之 SHA
Java 加解密技术系列之 SHA 序 背景 正文 SHA-1 与 MD5 的比较 代码实现 结束语 序 上一篇文章中介绍了基本的单向加密算法 — — MD5,也大致的说了说它实现的原理.这篇文章继续 ...
- Python之日志处理(logging模块)
本节内容 日志相关概念 logging模块简介 使用logging提供的模块级别的函数记录日志 logging模块日志流处理流程 使用logging四大组件记录日志 配置logging的几种方式 向日 ...
- C#解析json的两种方式
C#中Json转换主要使用的几种方法! 这篇主要介绍2.4.第三种方法使用的比较局限,所以我没有深入学习. 第二种方法 我使用比较多的方式,这个方法是.NET内置的,使用起来比较方便 A.利用seri ...
- css3转盘抽奖
做到一个活动,需要转盘抽奖,于是想到使用css3的动画效果,其中主要包含transition的动画过渡,transform的rotate的旋转效果,在这里只用到2d的旋转, 特别强调的是,因为需要和后 ...
- pb传输优化浅谈
在正式切入今天要谈的优化之前,先碎碎念一些自己过去这几年的经历.很久没有登录过博客园了,今天也是偶然兴起打开上来看一下,翻看了下自己的随笔,最后一篇原创文章发布时间是2015年的4月,今天是2017年 ...
- Spring 依赖注入之从不会到稍微会一点儿
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.sp ...
- BOM(2)
Window 子对象 (1)Location 对象 Location 对象包含有关当前 URL(统一资源定位符) 的信息.(Uniform Resource Location) Location 对象 ...
- python面向对象的编程
self相当于在实例化类的过程中传入参数,实例化对象本身 静态方法,静态字段属于类,动态字段,动态方法输入每一个实例化的对象 类实例化的过程把一些属性,方法封装到一个实例化对象当中 动态字段,动态方法 ...