摘要:
1.额外功能详解 MethodBeforeAdvice分析 public class Before implements MethodBeforeAdvice { /* 作用: 把需要在原始方法执行之前运行的额外功能,书写在before方法中 Method: 增加额外功能的那个原始方法 Object 阅读全文
摘要:
1.Spring动态代理的概念 概念: 通过代理类为原始类(目标类)增加额外功能 好处: 利于原始类的维护 2.搭建开发环境 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> 阅读全文