Tagged Questions

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

38
votes
10answers
14k 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 ...
33
votes
6answers
7k 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 ...
28
votes
4answers
4k views

Google Guice vs. JSR-299 CDI / Weld

Weld, the JSR-299 Contexts and Dependency Injection reference implementation, considers itself as a kind of successor of Spring and Guice. CDI was influenced by a number of existing Java ...
26
votes
6answers
497 views

How can I make external methods interruptable?

The Problem I'm running multiple invocations of some external method via an ExecutorService. I would like to be able to interrupt these methods, but unfortunately they do not check the interrupt flag ...
25
votes
8answers
1k 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 ...
24
votes
10answers
3k 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 ...
23
votes
7answers
584 views

What can AOP do that OOP can't do?

I'm primarily a Java developer. I've met quite a few Java devs who love AOP. I've also been seeing more and more AOP "design patterns" emerging recently that seem to be fairly widely adopted. Even so, ...
19
votes
13answers
2k 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?
17
votes
2answers
2k 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 ...
16
votes
4answers
3k views

What is the best implementation for AOP in .Net?

There is a lot of AOP implementation in C#, VB.net. this is some of AOP Implementations: Aspect.NET LOOM.NET Enterprise Library 3.0 Policy Injection Application Block Puzzle.NAspect AspectDNG ...
15
votes
4answers
7k 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 ...
14
votes
6answers
392 views

Audit Java: system to detect exceptions thrown / caught (aop?)

Due to checked exceptions, we can have some problems in production having all exceptions caught in the right place and logged correctly. I wonder if there is some opensource tool to help with ...
14
votes
6answers
4k views

Anyone with Postsharp experience in production?

Does anyone out there has used Postsharp AOP framework in production environment? Are there any pitfalls? In order to do some logging etc, can Postsharp be used in conjunction with log4net ? Any ...
13
votes
2answers
404 views

Aspect Orientated Programming in Qt

I'm trying to get my head around AOP and some Qt Code would really help. From wikipedia here is some sample code (easy for a Qt/C++ programmer to read): void transfer(Account fromAcc, Account toAcc, ...
13
votes
9answers
470 views

AOP use cases?

I'd like to make a picture of what are the possible cases for effective invovement of AOP in application design. All I have met so far is: logging-related security checks transaction management ...
13
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: ...
12
votes
3answers
1k views

Have you used Perf4J to collect and analyze performance metrics in Java app?

Did you use Perf4J in your Java application to collect and analyze performance stats? What was the typical pattern (using log files, utilities, UI, JMX, etc.)? Did you use annotations and ...
12
votes
7answers
1k views

Aspect-Oriented Objective-C Library?

Is there any Aspect-Oriented Objective-C library that I could perhaps use for iPhone development?
12
votes
6answers
3k 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 ...
12
votes
6answers
1k views

What ever happened to Aspect Oriented Programming?

I remember that in the late 1990s and early 2000s Aspect Oriented Programming (AOP) was supposed to be the "Next Big Thing". Nowadays I see some AOP still around, but it seems to have faded into the ...
12
votes
5answers
3k 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 ...
11
votes
8answers
427 views

How to make a simple dynamic proxy in C#

I want to build a dynamic proxy object to add certain functionality to an object. basically i want to receive an object, wrap it with an object that looks identical to the original i got, and ...
11
votes
5answers
4k 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# :)
11
votes
5answers
578 views

AOP… Should I unlearn OOP?

I have skimmed the online documentation, read the wiki entry, the posts and the blogs, but I'm still puzzled. What is, in a nutshell, Aspect Oriented Programming ? Is it simply better then Object ...
10
votes
6answers
412 views

Unit Testing and PostSharp

I'm wondering what the best way to do this is... I'm interested in introducing PostSharp into one of my projects, but I'm not sure how to unit test classes marked with an attribute properly. For ...
10
votes
4answers
2k views

Advice on AOP with C#

I have an ASP.NET 3.5 SP1 Webforms Application. I use the MVP pattern (supervising controller) with DI (autofac). My presenters call to the repository contracts defined in my Domain (DDD) which are ...
10
votes
7answers
2k views

What are the disadvantages of Aspect-Oriented Programming (AOP)?

What are the possible and critical disadvantages of Aspect-Oriented Programming? For example: cryptic debugging for newbies (readability impact)
10
votes
3answers
2k views

Cool PostSharp aspects

I'm looking for interesting PostSharp aspects - anything that you found useful and wouldn't mind sharing.
9
votes
3answers
926 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 ...
9
votes
4answers
849 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 ...
9
votes
4answers
185 views

AOP Fundamentals

Aspect-oriented programming is a subject matter that has been very difficult for me to find any good information on. My old Software Engineering textbook only mentions it briefly (and vaguely), and ...
9
votes
4answers
1k views

Simplest way to achieve automatic notification of property change

I know that there are solutions out there for implementing INotifyPropertyChanged, but none of them are as simple as: reference this library, create/add this attribute, done (I'm thinking ...
9
votes
3answers
819 views

AspectJ Load time weaver doesn't detect all classes

I am using Spring's declarative transactions (the @Transactional annotation) in "aspectj" mode. It works in most cases exactly like it should, but for one it doesn't. We can call it Lang (because ...
9
votes
2answers
2k views

Performance cost of Java dynamic proxy

Many modern frameworks (Spring, Hibernate) provide very nice dynamic behaviors with use of Java dynamic proxies, but what's the exact performance cost associated with it? Are there public benchmarks ...
9
votes
3answers
3k views

Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP framework

Which is the better in terms of capabilities, easy of use, documentation, samples, community/support, VS integration, known implementations, long-term viability, and build speed to implement a custom ...
9
votes
4answers
741 views

Java: testing thread access to “not thread-safe” methods

My strategy for threading issues in a Swing Java app is to divide methods in three types: methods that should be accessed by the GUI thread. These methods should never block and may call swing ...
9
votes
1answer
2k views

Javascript AOP libraries

Which Javascript AOP library do you use, and what are its key features ?
8
votes
7answers
727 views

Influencing AOP with attributes via IoC; code-smell or elegant?

I'm using StructureMap at the moment, generally with convention-based (Scan()) auto-configuration, and I'm looking to add decorator-based caching into the pipeline. If I configure it manually that is ...
8
votes
3answers
2k 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 ...
8
votes
4answers
4k 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 ...
8
votes
1answer
562 views

What are the different methods for injecting cross-cutting concerns?

What are the different methods for injecting cross-cutting concerns into a class so that I can minimize the coupling of the classes involved while keeping the code testable (TDD or otherwise)? For ...
8
votes
2answers
551 views

Best Aspect Oriented Framework for features / build performances in .net

In various projects I worked with, we had to use some AOP or dependency injection framework. We used Enterprise LIbrary, Unity and PostSharp. For now, Postsharp is my best choice when it comes to ...
8
votes
5answers
7k 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", ...
8
votes
4answers
2k views

PostSharp - il weaving - thoughts

I am considering using Postsharp framework to ease the burden of application method logging. It basically allows me to adorn methods with logging attribute and at compile time injects the logging code ...
7
votes
4answers
151 views

Is AOP a type of decorator pattern?

I got asked this question in a interview. I clearly know what a decorator pattern is and how it can be used. But I was not able to think through this question in the interview. This is the actual ...
7
votes
1answer
62 views

What is a good example of a program written using aspect-oriented techniques?

I'm not necessarily looking for an example of code written on an AOP language, but some code that thoroughly and effectively divides into aspects, rather than components, so I could read it and see ...
7
votes
2answers
435 views

What Aspect-Oriented Programming (AOP) libraries for .NET are still actively developed?

I am trying to find a reasonably mature/stable and freely available (preferably open-source) library for doing AOP in .NET. I've been searching around a bit and found the products below; however, most ...
7
votes
4answers
4k 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 ...
7
votes
2answers
225 views

Call/Return feature of classic C++(C with Classes), what modern languages have it?

On page 57 of The Design and Evolution of C++, Dr. Stroustrup talks about a feature that was initially part of C with Classes, but it isn't part of modern C++(standard C++). The feature is called ...
7
votes
1answer
259 views

AOP and Applying Security to UI Elements

I'm working on an application in which we are trying hard to keep Separation of Concerns as strongly as possible. We're finding that the cross-cutting concern of security creates a number of ...

1 2 3 4 5 17