Top "Aop" questions

AOP stands for Aspect-Oriented Programming.

Spring - AspectJ pointcut for constructor object with annotation

I'm developing a java (JDK1.6) application with Spring framework(4.0.5) and AspectJ for AOP Logging. My Aspect classes work fine but …

java spring aop aspectj spring-aop
RealProxy in dotnet core?

I'm working with the namespaces System.Runtime.Remoting.Proxies and System.Runtime.Remoting.Messaging for AOP in C#. I'm trying …

c# aop dnx .net-core
Mixing JDK and CGLIB proxies within Spring

I have an application running with Spring, and I'm using AOP in some places. Since I want to use the @…

spring aop spring-aop cglib
Aspect-oriented programming in android

What would be the best way to implement Aspect-oriented programming (AOP) in an Android application? Would it be efficient with …

java android aop
Understanding Spring AOP

I am working with Spring 3.0 framework and still a novice. Can anyone explain me in layman terms what is AOP …

java spring aop aspectj
How to gets protected internal methods with reflection

public abstract class BaseAspectAttribute : Attribute { protected internal virtual void OnMethodBeforeExecuting(object args) { Console.WriteLine("Base Attribute OnMethodBeforeExecuting Work"); } } public class …

c# reflection system.reflection aop methodinfo
AspectJ pointcut expression match parameter annotations at any position

I'm trying to define a pointcut expression to match methods which contain a parameter annotated with a specific annotation, regardless …

java spring aop aspectj pointcut
Pointcut for annotated methods or methods in annotated classes

I need a pointcut for methods in classes annotated with @X or methods annotated with @X. I also need the …

java spring aop spring-aop
How do I replace a method implementation at runtime?

I'd like to have property getters and methods that I can decorate with my own custom attribute and based on …

c# .net aop dynamic-programming dynamic-proxy
Do you use AOP (Aspect Oriented Programming) in production software?

AOP is an interesting programming paradigm in my opinion. However, there haven't been discussions about it yet here on stackoverflow (…

aop paradigms