Spring---AspectJ与Spring---失效问题

 

1、预期的方法被当前类的方法调用

 

预期方法 被 目标Bean(不是代理Bean)调用 

 

@Service
public class AspectJServiceImpl {

   
    public void testAspectJ(User s) {

        String name = this.getClass().getName();

        test("s");
    }


    public void test(String s){

        System.out.println();
    }
}


预期拦截

@Around("execution(public void com.an.service.impl.AspectJServiceImpl.test(String))")
    public Object test(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {...}

  

 

posted on 2022-04-20 17:07  anpeiyong  阅读(104)  评论(0编辑  收藏  举报

导航