public java.lang.String hello.aop.member.MemberServiceImpl.hello(java.lang.String)
위의 해당하는 메소드 정확한 execution 표현식으로는 아래처럼 표현할 수 있습니다.
pointcut.setExpression("execution(public String hello.aop.member.MemberServiceImpl.hello(String))");
assertThat(pointcut.matches(helloMethod, MemberServiceImpl.class)).isTrue();
pointcut.setExpression("execution(* *(..))");
assertThat(pointcut.matches(helloMethod, MemberServiceImpl.class)).isTrue();