0
votes
3answers
89 views
java.lang.NoClassDefFoundError: ProceedingJoinPoint
We have a number of web service client applications which interface between our main customer facing application and backend web services. These web service application generate th …
1
vote
3answers
125 views
AspectJ - Compile Java source with precompiled aspects
Let's say I have few aspects, which I have already compiled, and now I just want to compile single source file, but without recompiling the aspects, since it takes a lot of time.
I …
0
votes
0answers
7 views
Polymorphism in AspectJ
I am trying to decide which is the better way to dispatch on a type in AspectJ.
Suppose I am performing a computation on a tree with three kinds of nodes. I could then write a simp …
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 …
1
vote
3answers
1k views
Why doesn’t AspectJ compile-time weaving of Spring’s @Configurable work?
Update 5: I've downloaded the latest Spring ToolsSuite IDE based on the latest Eclipse. When I import my project as a Maven project, Eclipse/STS appears to use the Maven goals for …
3
votes
2answers
53 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?
1
vote
1answer
45 views
Is there a way to improve this pointcut?
I have come up with the following pointcut that I use for tracing method entry/exit. It's not broken and also does what I want but: 1- I find it looks clumsy or could be more elega …
0
votes
0answers
18 views
AOP with AbstractAction execute method
I was attempting to set up an aspect on one of the classes extending AbstractAction (SWF - package org.springframework.webflow.action) on the public final method execute.
The exec …
0
votes
0answers
60 views
Trouble with Aspectj load-time-weaving when using EclipseLink JPA in Spring dm Server 1.x
I am attempting to get EclipseLink JPA working inside the Spring dm Server OSGi environment.
Relevant frameworks and libraries downloaded from the Spring Enterprise Bundle Reposit …
0
votes
5answers
265 views
Aspectj in spring
I am getting the following error when i try to auto wire aspectj in spring
org.xml.sax.SAXParseException: The prefix "aop" for element "aop:aspectj-autoproxy" is not bound.
my a …
1
vote
2answers
62 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.
2
votes
2answers
78 views
Testing an AspectJ Aspect
When writing aspects, how can I test that they do match and that they are invoked when I want them to?
I'm using @Aspect declarations with Spring 2.5.6.
I don't care about the …
3
votes
3answers
72 views
Adding validations to Java Beans via Annotations
I want to add validations to a Java Bean. For example, I want to do the following:
@MaxLength(50)
@RequiredField
public void setEmployeeName(String name){
.....
}
I know I c …
1
vote
2answers
161 views
Spring load time weaving not detecting class annotated with @configurable
I'm having trouble getting AspectJ to perform load time weaving on a class annotated with @configurable in my main project. No fields get set and none of the setters are touched.
…
4
votes
1answer
43 views
How can I use a singleton class in AOP (aspect oriented programming)?
Language by choice is AspectJ but I am open for a generic answer.
