Spring_day04
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring_day04相关的知识,希望对你有一定的参考价值。
1:后置通知的返回值问题
1.在后置通知中可以添加返回值,用来对返回值做处理。配置方法就是在xml文件中的后置通知配置项中,添加returning属性 returning="name" 属性的值就是用来接收参数的名称,这个名称必须是固定的不能随便更改。
2.后置通知与环绕通知一起使用时,如果后置通知需要返回值,那么在环绕通知中 必须添加返回值参数。不然目标对象执行的返回值就会被环绕通知所拦截。不会再往下传递参数。
2.异常通知返回值问题
如果想获得异常信息。可以在异常通知中添加返回值为throwing="throwable"
名称和后置通知一样都是固定的写法 应该和异常通知中的参数保持一致。我们可以通过异常信息 做一个异常日志收集系统。使用AOP特别的方便。
3.注解形式配置AOP
1.AOP注解开启
<aop:aspectj-autoproxy proxy-target-class="true"/>
2.指明切面类
@Aspect
public class ReturnAspect
3.编写切入点
@Pointcut(value="execution(* service..*(..))")
public void pointcut(){
}
4.配置通知与切入点绑定
@Around(value="pointcut()")
public String around(ProceedingJoinPoint joinPoint) throws Throwable{
String name = (String) joinPoint.proceed();
System.out.println("!!!!!!!"+name);
return name;
}
注意事项
如果报错信息。中包含::0 应该检查切入点表达式中的返回值和通知中的参数是否匹配。
4.如果得到方法上的注解
@Around(value="execution(* service..*(..)) && @annotation(hello)")
public String around(ProceedingJoinPoint joinPoint,Hello hello)
这样利用Spring的机制能够快速的获取方法上的注解。便于以后注解的获取。
以上是关于Spring_day04的主要内容,如果未能解决你的问题,请参考以下文章