1
vote
2answers
24 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
33 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 …
0
votes
1answer
36 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
66 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 …
3
votes
1answer
67 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 …
1
vote
1answer
16 views
Castle Windsor Interceptor for private/protected method
Hi all,
Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
1
vote
1answer
18 views
Spring - How ‘multiple’ AOP behaviors to sevices are resolved?
Hello, I want to know that whether we can apply 'multiple' AOP behaviors to our service classes or not?
Lets just say, i do this to my BankServiceImpl class:
@Transactional on t …
3
votes
2answers
46 views
AspectJ problem
Hi I am new to AspectJ and I would like to find out if creating variants of a class using Aspects - I will create another instance of the class as well?
0
votes
1answer
51 views
.NET Conditional Compiler Symbols and Unit Test Libraries
My team has a set of unit test libraries that run against our application code - unfortunately they are throwing (unexpected) exceptions. The reason for this is that our logging co …
1
vote
3answers
91 views
Would aspect oriented programming be a positive addition to the C# language?
I've had some interesting debates with colleagues about the merits if incorporating aspect oriented programming as a native paradigm to the C# language.
The debate seems to be div …
0
votes
1answer
20 views
Accessing jax-rs (CXF) MessageContext outside service class in Spring (2.5)
Hey All,
I'm trying to access the MessageContext (or WebServiceContext) in an aspect to get access to the HTTPServletRequest for logging purposes. I would like to inject the conte …
0
votes
1answer
33 views
Invalid compiler-generated .NET Class Name
I was going through Getting Started (with PostSharp)
And when I saw PostSharp injected (is this expression is right?) an aspect code into assembly, I saw this oddly named class ma …
1
vote
2answers
53 views
What are the functional differences between AspectJ and PostSharp?
Does anyone know what AOP features are different between AspectJ and PostSharp (yes I know they are for different languages and platforms)?
I'm trying to understand what kind of t …
1
vote
2answers
49 views
How to implement the Strategy Pattern in AOP
Can anyone tell me how to implement the Strategy Pattern in AOP?
An example using Spring-AOP or AspectJ would be very helpful.
1
vote
1answer
67 views
Refactoring nasty legacy systems via AOP or other automated means?
I've recently been playing around with PostSharp, and it brought to mind a problem I faced a few years back: A client's developer had produced a web application, but they had not g …
