AOP stands for Aspect-Oriented Programing. A programming paradigm that aims to increase modularity by allowing the separation of what are called "cross-cutting concerns" (aspects).

learn more… | top users | synonyms

59
votes
11answers
25k views

How do I intercept a method call in C#?

For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method ...
61
votes
6answers
13k views

Aspect Oriented Programming vs. Object-Oriented Programming

Like most developers here and in the entire world, I have been developing software systems using object-oriented programming (OOP) techniques for many years. So when I read that aspect-oriented ...
21
votes
6answers
18k views

@AspectJ pointcut for all methods of a class with specific annotation

I want to monitor all public methods of all Classes with specified annotation (say @Monitor) (note: Annotation is at class level). What could be a possible pointcut for this? Note: I am using @AspectJ ...
23
votes
5answers
14k views

Aspect Oriented Programming in C#

HI, Any good resources to wrap my head around Aspect Oriented Programming? PS:- I need to understand AO programming not the libraries or frameworks available for .NET or C# :)
12
votes
5answers
2k views

Are there any working Aspect-Oriented PHP libraries? [closed]

It seems like the topic of Aspect-Oriented Programming (AOP) in PHP started sometime in 2005 and died sometime around 2007. Some (now apparently dead) projects include: AOPHP AspectPHP Transparent ...
30
votes
5answers
7k views

What is the best implementation for AOP in .Net? [closed]

There is a lot of AOP implementation in C#, VB.net. this is some of AOP Implementations: PostSharp LOOM.NET Aspect.NET Enterprise Library 3.0 Policy Injection Application Block AspectDNG DotSpect ...
15
votes
3answers
6k views

Javascript AOP libraries

Which Javascript AOP library do you use, and what are its key features ?
4
votes
3answers
3k views

How to use AOP with AspectJ for logging?

I would like to add "trace" messages to all my public methods as follows: public void foo(s:String, n:int) { // log is a log4j logger or any other library log.trace(String.format("Enter foo with s: ...
31
votes
14answers
5k views

Aspect-oriented programming examples

Can anyone post an example of Aspect-oriented programming (AOP) that is not logging? I've looked at several resources but all the examples are trivial logging. What is it useful for?
37
votes
8answers
2k views

What is aspect-oriented programming?

I understand object oriented programming, and have been writing OO programs for a long time. People seem to talk about aspect-oriented programming, but I've never really learned what it is or how to ...
18
votes
5answers
6k views

Any AOP support library for Python?

I am trying to use some AOP in my Python programming, but I do not have any experience of the various libs that exists. So my question is : What AOP support exists for Python, and what are the ...
7
votes
3answers
4k views

Traditional logging vs AOP logging

I'm starting this new project and we are thrashing out our logging/debugging approach and I wanted to put the question to the rest of you on SO, given private final static Logger logger = ...
21
votes
3answers
4k views

Ruby dependency injection libraries

I've been looking at some Ruby dependency injection libraries. In particularly, I checked out Needle and Copland. They've been around for quite awhile, yet not a lot of usages. What are some of ...
19
votes
4answers
11k views

Built-in AOP in C# - is it on the way?

In large apps I find myself really wishing I had built-in AOP facilities. As it stands in C# the best you can do is factories and RealProxys, PostSharp, ICorDebug, ICorProfiler or injection ...
8
votes
3answers
2k 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 ...
9
votes
6answers
13k views

Fixing BeanNotOfRequiredTypeException on Spring proxy cast on a non-singleton bean?

I'm having an issue with pulling a Spring bean from an application context. When I try; InnerThread instance = (InnerThread) SpringContextFactory.getApplicationContext().getBean("innerThread", ...
3
votes
2answers
950 views

Asp.Net MVC Controller: declarative AOP with Spring.Net

Is it possible, that Spring.Net Aspects don't work with Asp.Net Controller? I want to configure transactions on Action methods of Controllers but the proxy doesn't seem to trigger. <object ...
393
votes
14answers
16k views

Uncatchable ChuckNorrisException

Is it possible to construct a snippet of code in Java that would make a hypothetical java.lang.ChuckNorrisException uncatchable? Thoughts that came to mind are using for example interceptors or ...
27
votes
10answers
4k views

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 (at least I couldn't find them). What do you think about it in ...
16
votes
5answers
1k views

Help and Information about Aspect Oriented Programming

I'm a newcomer to the idea of aspect-oriented programming but I would like to explore the idea of using it on my project for handling logging, reporting, etc. To this end I have some questions: ...
10
votes
1answer
1k views

Logging, Aspect Oriented Programming, and Dependency Injection - Trying to make sense of it all

I know that logging is a prime use case for AOP. Additionally logging wrappers are also exemplified as cases when you want to use DI so that classes aren't coupled with a specific logging ...
17
votes
7answers
7k views

Performance impact of using aop

We have started to use spring aop for cross cutting aspects of our application (security & caching at the moment). My manager worries about the performance impact of this technology although he ...
14
votes
3answers
6k views

Is using Spring AOP for logging a good idea?

I'm reading up on Spring at the moment and one of the examples used for a use of AOP is logging the start and end of method calls. I've also read that using AOP can impact performance. Is using ...
10
votes
3answers
767 views

Is there a way to wrap all JavaScript methods with a function?

I want to wrap every function call with some logging code. Something that would produce output like: func1(param1, param2) func2(param1) func3() func4(param1, param2) Ideally, I would like an API ...
10
votes
2answers
6k views

Tracking down cause of Spring's “not eligible for auto-proxying”

When you start messing around with Spring's auto-proxy stuff, you often run into this behaviour as documented: Classes that implement the BeanPostProcessor interface are special, and so they ...
12
votes
5answers
10k views

Spring AOP pointcut that matches annotation on interface

this is my first post here, so I apologize in advance for any stupidity on my side. I have a service class implemented in Java 6 / Spring 3 that needs an annotation to restrict access by role. I ...
10
votes
1answer
3k views

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 the mobile battery?
9
votes
2answers
2k views

Applying AOP

I've been using some basic AOP style solutions for cross-cutting concerns like security, logging, validation, etc. My solution has envolved around Castle Windsor and DynamicProxy. I've gone down ...
7
votes
1answer
3k views

Castle, AOP and Logging in .NET

Are there any tutorials or sample programs out there on using AOP, Castle, and logging in a .Net application? I have found pieces out there but I am looking for something more to help me form a more ...
4
votes
1answer
698 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 ...
4
votes
2answers
3k views

Pointcut matching methods with annotated parameters

I need to create an aspect with a pointcut matching a method if: it is annoted with MyAnnotationForMethod One of its parameters (can have many) is annotated with @MyAnnotationForParam (but can have ...
3
votes
1answer
404 views

Spring.NET.AOP - ExceptionHandlerAdvice doesnt replace custom exception

this is my first and also I am beginner in Spring.NET and also AOP. I would like use Aspect for Exception Hadling for replacing, wrap and modify my custom exceptions. First I defined some entity ...
2
votes
1answer
304 views

Using AOP techniques to intercept ADO.Net

I have quite a large code base using a variety of different ADO technologies (i.e. some EF and in some cases using ADO.Net directly). I'm wondering if there is any way to globally intercept any ...
1
vote
2answers
460 views

Using PostSharp to intercept ADO.Net

I have quite a large code base using a variety of different ADO technologies (i.e. some EF and in some cases using ADO.Net directly). I'm wondering if there is any way to globally intercept any ...
21
votes
5answers
10k views

Java Aspect-Oriented Programming with Annotations

Yesterday, in a related but much more general post entitled "AOP Fundamentals" (see reference below), I asked for a King's English explanation of what AOP is, and what it does. I received some very ...
11
votes
4answers
8k views

Maven: compile aspectj project containing Java 1.6 source

Primary Question What I want to do is fairly easy. Or so you would think. However, nothing is working properly. Requirement: Using maven, compile Java 1.6 project using AspectJ compiler. Note: ...
18
votes
3answers
4k views

Aspect Oriented Programing (AOP) solutions for C# (.Net) and their features [closed]

I would like to ask for 3 information here: There is no integrated solution for Aspect Oriented Programing (AOP) in C# (.Net) from Microsoft is that correct ? Is there any such solution under ...
16
votes
11answers
51k views

Spring 3.0: Unable to locate Spring NamespaceHandler for XML schema namespace

My setup is fairly simple: I have a web front-end, back-end is spring-wired. I am using AOP to add a layer of security on my rpc services. It's all good, except for the fact that the web app aborts ...
10
votes
5answers
7k views

What is AOP, Dependency Injection and Inversion Of Control in Simple English

I have tried to understand AOP, Dependency Injection and Inversion of Control SPRING related concepts but I am having hard time understanding it. Can anyone explain this in simple English ?
2
votes
3answers
8k views

Java: Simple technique for annotation-based code injection?

Is there a way to make this code work? LogonControl.java @Audit(AuditType.LOGON) public void login(String username, String password) { // do login } AuditHandler.java public void audit(AuditType ...
5
votes
5answers
2k views

How can I dynamically inject code into event handlers in Delphi?

For debugging / performance tests I would like to dynamically add logging code to all event handlers of components of a given type at run time. For example, for all Datasets in a Datamodule, I need ...
3
votes
1answer
1k views

AspectJ in Android: pointcut call(* Activity.onCreate(..)) doesn't pick out Activity.onCreate() calls

I am using AspectJ in my Android project and I'd like to write a pointcut that catches all the calls to onCreate() and onDestroy() of my activities. I am quite new to AspectJ, so probably I am ...
4
votes
4answers
447 views

Other than logging, and transaction management what are some practical applications of AOP?

I understand the principles but i have a hard time seeing where the practical applications are outside of a few. Please enlighten me ;)
3
votes
1answer
1k views

How to inject an attribute using a PostSharp attribute?

How can I write a PostSharp aspect to apply an attribute to a class? The scenario I'm considering is a WCF entity (or domain object) that needs to be decorated with the DataContract attribute. It ...
3
votes
2answers
668 views

@AspectJ pointcut for subclasses of a class with an annotation

I'm looking for a pointcut that matches method executions in classes that subclass a class with a specific annotation. The excellent AspectJ cheat sheet helped me to create the following pointcut: ...
3
votes
6answers
688 views

What is the most common use for AOP in spring project

After reviewing the AOP pattern, I'm overwhelmed with the ways of how and what to use it for in my spring project. I'd like to use it as audit log system of all the financial business logic. It just ...
3
votes
3answers
2k views

Spring Dependency Injecting an annotated Aspect

Using Spring I've had some issues with doing a dependency injection on an annotated Aspect class. CacheService is injected upon the Spring context's startup, but when the weaving takes place, it says ...
1
vote
2answers
3k views

implement AOP for Controllers in Spring 3

How do I implement AOP with an annotated Controller? I've search and found two previous posts regarding the problem, but can't seem to get the solutions to work. posted solution 1 posted solution 2 ...
7
votes
5answers
665 views

Aspect-oriented programming in Java

What is the best tool for Java for aspect-oriented programming? The requirements for a tool are of course IDE support, expressiveness and proper documentation.
4
votes
1answer
1k views

How to configure RetryAdvice and ExceptionTranslation for Deadlocks using NHibernate and Spring

i am using Spring.net 1.2 with NHibernate 2.0.1. Within my project i'am facing some Deadlock issues and besides the database tweaks to minimize the occurence i would like to implement Springs ...

1 2 3 4 5