Tagged Questions
The aopalliance tag has no wiki summary.
6
votes
1answer
262 views
C# and AOP - AOPAlliance (Aspect-oriented programming) how does this work
I just had a very interesting experience with AOP in C#. I have a function with a return type List which is being intercepted and that's all well and good. However the interceptor function is a ...
5
votes
1answer
2k views
What's aopalliance all about? And why is guice using it?
I'm using guice for dependency injection with aop from aopalliance. I can't quite figure out what's aopalliance all about and who implemented the version (dated from 2004) that's on their sourceforge ...
2
votes
1answer
132 views
Get Target in MethodInterceptor
How I can get Target object in my interceptor?
bindInterceptor(subclassesOf(A.class), any(), new MethodInterceptor() {
@Override
public Object invoke(MethodInvocation ...
0
votes
1answer
78 views
AopAlliance (Guice): Call another method from an intercepted method
In method interception with AopAlliance is there a way to call a method from the class who's method was intercepted?
For example:
public class MyClass {
public void interceptMe() {}
public ...
0
votes
1answer
549 views
JSF, Exception Logging using a aopalliance MethodInterceptor
I would like to log the exceptions that are thrown when serving JSF files in the same way other exceptions are logged in our web application.
We annotate classes with logged exceptions with ...
0
votes
2answers
172 views
AOP can be use to share data among different running threads in application process?
UPDATE: I am not clear in what context AOP should be used? As we can use AOP for logging purpose, security(Authentication), please suggest some other scenarios where we can take benefit of AOP.
Can ...