I have some service and interceptor for each method of that service.
Some methods of that service implementation calls other that service methods
( included in implementation interface ). In this case, interceptor is called for each
method or only for methods called first?
Example:
interface IA has methods m1, m2, m3.
class AImpl implements IA and there is interceptor configured for each IA method ( m1, m2, m3 ).
In class AImpl method m1 calls m2 and m2 calls m3.
In this situation when I will call m1, interceptor will be called for nested m2 and m3 too or only for m1?


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to