共计 562 个字符,预计需要花费 2 分钟才能阅读完成。
1. 本章内容
- 在这一章咱们会对框架的 IOC 以及 AOP 的性能进行测试
2. 编写相干的测试类
2.1 编写咱们须要被加强的类:AspectTarget
2.1.1 须要实现的代码如下
package com.wuyiccc.demo.aop;
import com.wuyiccc.helloframework.core.annotation.Component;
import lombok.extern.slf4j.Slf4j;
/**
* @author wuyiccc
* @date 2020/7/14 15:39
* 岂曰无衣,与子同袍~
*/
@Component
@Slf4j
public class AspectTarget {public void testRight() {log.info("AspectTarget#Right() 办法执行!");
}
public void testThrowing() {log.info("AspectTarget#testThrowing() 办法执行");
throw new RuntimeException();}
}
2.1.2 AspectTarget 图示:
2.2 编写切面类:
2.2.1 代码图示如下:
2.3 编写须要被依赖注入的类: IocTest
3. 开始测试
github 地址:https://github.com/wuyiccc/he…
正文完