接上一篇 Java AOP (1) compile time weaving [Java 切面编程 (1) 编译期织入] Dynamic proxy 动态代理 Befor talking about runtime weaving, let's take a look at Java dynamic proxy. 在说运行时织入之间,我们先看看java动态代理 public class DynamicProxyTest { public interface Vehicle { void wh…
According to wikipedia aspect-oriented programming (AOP) is a programming paradigm that aims to increase modularity by allowing the separation of cross-cutting concerns. Let's imagine we have serveral modules in a project, each of the them is worki…