a third party library return object like below
@Autowired
ThirdPartyFactory thirdPartyFactory;
TestInterface fromThirdParty = thirdPartyFactory.getObject(); //this return TestInferfaceImpl
fromThirdParty.doSomething(someParameter);
how to do pointcut on TestInterface ? Is it required to register in xml file?
I tried point cut like below, but does not work
@Around(“execution( * package.TestInterface.doSomething(..))”)
There are a few options.