Spring MVC的核心
Spring MVC是Spring框架中的一个重要模块,它采用了经典的MVC(Model-View-Controller)设计模式。
MVC是一种软件架构的思想,它将软件按照模型(Model)、视图(View)…
导入依赖
Component
Aspect
public class MyselfAspect{Before("excution(* com.services.*.(..))")public myBefore(JointPoint jointPoint){System.out.println("在前面执行");}
}只要注意如何使用Before注解就行了,里面存放的是*ÿ…