Spring AOP的两种方式实现

一、注解方式 (1)切面类html @Aspect public class AspectAnnotation { @Pointcut("execution(void aop.annotation.service.impl.StudentServiceImpl.addStudent(..))") public void addStudent() { } @Before("add
相关文章
相关标签/搜索