2
votes
1answer
20 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-map …
0
votes
4answers
218 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 …
0
votes
2answers
22 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 me …
1
vote
2answers
44 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 cla …
4
votes
2answers
86 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 inter …
2
votes
2answers
76 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, …
5
votes
1answer
65 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 …
1
vote
2answers
49 views
Patterns for functional, dynamic and aspect-oriented programming
Hello everybody,
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of article …
0
votes
2answers
50 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
43 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 …
1
vote
2answers
32 views
Spring - Aspect is not getting applied at runtime
I have the following configuration:
@Aspect
public class MyAspect {
@Around(@annotation(SomeAnnotation))
public Object myMethod(ProceedingJoinPoint joinPoint) throws Throwable …
0
votes
2answers
47 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
v …
3
votes
1answer
77 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 …
0
votes
1answer
41 views
My Spring AOP not working
I need help making AOP work. What am I missing here?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http …
0
votes
1answer
76 views
Why is this method call not getting intercepted?
Why doesn't DoIt() method call get intercepted? Should I use something other than InterfaceInterceptor to intercept the DoIt() method? How would you do it?
using System;
using Mic …
