Hello, I want to know that whether we can apply 'multiple' AOP
behaviors to our service classes or not?
Lets just say, i do this to my BankServiceImpl
class:
@Transactional
on top of one of the method,accountTransfer()
, and- and some custom
<aop>
pointcut on the execution of another methodsomeOtherMethod()
.
Then will Spring be able to generate one proxy where accountTransfer()
is made transactional and someOtherMethod()
is also given aop
behaviour?
Does any one has an idea on how Spring resolves multiple AOP
behaviors?