объект возврата сторонней библиотеки, как показано ниже
@Autowired
ThirdPartyFactory thirdPartyFactory;
TestInterface fromThirdParty = thirdPartyFactory.getObject(); //this return TestInferfaceImpl
fromThirdParty.doSomething(someParameter);
как сделать pointcut на TestInterface? Требуется ли регистрация в xml-файле?
Я пробовал вырезать как показано ниже, но не работает
@ Around ("выполнение (* package.TestInterface.doSomething (..))")