1
vote
2answers
55 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 …
0
votes
1answer
22 views
AOP interception attribute
So, i have this problem, and no one seems to be able to help. So rather than keep bashing away i'm going to throw it out there for alternative ways to skin this particular cat.
I currently have the …
5
votes
7answers
328 views
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this …
0
votes
4answers
231 views
How to get this really fast?
I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).
In this framework, I have two different modes …
0
votes
0answers
45 views
Unity IOC, AOP & Interface Interception
I've been playing around with Unity to do some AOP stuff, setting up via IOC like:
ioc.RegisterType<ICustomerService, CustomerService>()
…
0
votes
2answers
34 views
How to convert an exception to another one using PostSharp?
I would like to automagically add the following code around the body of some methods:
try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
I am …
4
votes
2answers
91 views
Dependency Injection - Who owns the Interface?
Assuming I want to use a dependency injection framework in an AOP approach, with the goal of producing code modules. What's the best practice for the ownership of the shared interfaces? By ownership …
1
vote
2answers
62 views
Reduce PostSharp compile time overhead
We recently introduced PostSharp into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects …
2
votes
1answer
41 views
Is it possible to catch / handle exceptions thrown from a Grails controller? Aop?
class MyController {
def myAction = {
throw new MyException("Test")
}
}
Is it possible to catch / handle the exception thrown by the code above? The following url-mapping kinda works, …
2
votes
2answers
83 views
Preprocessing C# - Detecting Methods
Hey,
I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing …
5
votes
1answer
75 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 …
0
votes
2answers
25 views
JBoss Microcontainer + AOP in a standalone app
Hi everyone,
I'm trying to create a standalone app using JBoss Microcontainer for IoC and JBoss AOP for, well, AOP.
I've boot-strapped, deployed a descriptor with AOP XML, so far so good.
But the …
0
votes
2answers
56 views
Is there an AOP solution for Silverlight?
I see that there is PostSharp AOP support for Silverlight, but is there a product that works like the Castle DynamicProxy library, but in Silverlight?
2
votes
2answers
45 views
Polluting domain types by implementing infrastructure-related interfaces
Hi all,
Did about 30 minutes worth of searching, found lots of relevant info, but none that addresses this particular concern, hope I'm not repeating a common question.
I would like to know what …
0
votes
2answers
59 views
Use AOP in C# to detect if return value is used
This is related to my other question, but this time very specific. Is it possible, using AOP (PostSharp in particular) to detect if function's return value was used? For example
var x = y.func(); // …
