SSM(4)-AOP-自定义类来实现Aop

承接上篇,第二种方式,用自定义类来实现
1.自定义一个JAVA类(此篇是在前篇的基础上做的差异性描述)
2.配置beans.xml
3.写个测试类



1.写个JAVA类

public class myPointcut {

   public void before(){
       System.out.println("---------方法执行前---------");
  }
   public void after(){
       System.out.println("---------方法执行后---------");
  }
   
}


2.配置beans.xml
 






   
   
       
       
       
   


3.写个测试类
 

public class MyTest {
   @Test
   public void test(){
       ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
       UserService userService = (UserService) context.getBean("userService");
       userService.add();
  }
}



​​​​​​​

你可能感兴趣的:(JAVA)