Tagged Questions

6
votes
3answers
509 views

What is AspectJ good for?

First let me note, that I use AspectJ and I like it, but what else can I do with it. I know AspectJ can be/is used for Logging. In some cases it is used for Transaction controlling – mostly ...
6
votes
2answers
421 views

Is AspectF (a Fluent Aspect Framework) an AOP-like design that can be used without much concern?

Omar Al Zabir is looking for "a simpler way to do AOP style coding". He created a framework called AspectF, which is "a fluent and simple way to add Aspects to your code". It is not true AOP, ...
4
votes
6answers
878 views

Future of Aspect Oriented Programming

I am a newbie in the area of AOP. The first time I coded something applying concepts of AOP, I was thrilled to understand how aspects eliminate cross cutting patterns in your application. I was ...
3
votes
1answer
316 views

PostSharp on assemblies I don't have source for

In the examples on their website, PostSharp has a demo of intercepting calls in main system assemblies. I have tried a few times to setup and replicate said intercept calls on assemblies I don't have ...
2
votes
1answer
280 views

C# AOP Method Interception on child method calls?

My AOP (C#) implementation always intercepts the first (public) method call but not subsequent methods called within the first intercepted method, is this a limitation with ContextBoundObject AOP ...
2
votes
1answer
313 views

Spring AOP injecting PortletRequest

I'm trying to inject a portletrequest in my aspect class @Autowired(required = true) private PortletRequest request; @Before("execution(* de.ac.mis.dao.*.getSessionFactory())") public void ...
1
vote
1answer
167 views

Best way for logging exception in Spring.NET with log4net or nlog

I would like to know which way of log exception in Spring.NET is prefered and why. I found two common scenario. 1.Use IThrowAdvice. Created throws advice and in method AfterThrowing handle / log ...
0
votes
1answer
275 views

Spring AOP Aspect not executing

I've been trying to figure out why my simple aspect is not getting executed. I looked at the answers of similar problems but i still can't get it to work. My intention is to wrap the execution of a ...
0
votes
1answer
198 views

Aspect Oriented Programming in Ruby

What frameworks exist to add AOP to Ruby?