0
votes
2answers
56 views

How do I pass arguments to Spring AOP advice with annotated parameters?

I am using Spring 3.1.2.RELEASE with cglib load-time weaving and I am trying to get advice to work with a method that has custom annotations and annotated parameters. Advice: @Aspect public class ...
0
votes
1answer
30 views

AspectJ LTW of all applications deployed to a single JVM

I have bundled my aspectJ aspects into a single War (aspectsWar.war) file and deployed it to an application server with existing running applications and used LTW weaving with a javaagent on tomcat ...
1
vote
2answers
19 views

Why does spring throw an aspectj error if it does not depend on aspectj?

I'm attempting to setup the Spring AoP framework and I don't want to depend on AspectJ, so I'm declaring my aspects, advice etc in a bean xml configuration file similar to the following: <bean ...
0
votes
1answer
33 views

Spring and AOP : @After works but not @Afterreturning

In a webapp, I use Spring AOP to check authorisations for my services on incoming calls and to manage messages (info, warn, error) on returning results. Using an aspect to do that saves me lines of ...
0
votes
0answers
21 views

Spring AOP config with JSP

I have configured AspectJ in my spring application. Since my app is a legacy app which is using JSP scriptlet code for server side processing. The problem I am facing is that I want to invoke an ...
1
vote
1answer
19 views

Using a Method Annotation value to target a pointcut

I'm using AspectJ to weave in a custom PropertyChangeSupport engine for any class tagged with @BindableClass. It looks for methods tagged with @BindableMethod and intercepts the 'set' calls to fire ...
0
votes
1answer
76 views

Use AOP on class with final members

I am trying to use spring aop. I have configured the following Aspect: @Component @Aspect public class BenchmarkAspect { private static final Logger logger = ...
0
votes
0answers
17 views

How to inject dependency using aspectj to instantiate persistence implementation

I want to use aspectj (not spring aop) to instantiate a private IRepository field in a Controller class in order to be able to determine the persistence implementation via aspect advice. I don't care ...
0
votes
2answers
48 views

How to ensure order advice for two point cuts matching the same join point in Aspectj and AOP

I'm planning on using Spring Security using Spring AOP. It will have it's own point cuts for all public methods on controller classes. The methods will be picked out by class name and public method, ...
0
votes
2answers
55 views

How do I capture object initialization time using AspectJ?

If I need to trace the time at which the object is created, using AspectJ, do I capture a call to the constructor, a constructor executing or a object initialisation? All three have different ...
1
vote
2answers
90 views

Load Time Weaving on classes not within my project

I'm trying to use Spring to provide load time weaving to several classes in a project I've created. I'm having trouble getting it to work when I call a class that is not within my local project. I ...
0
votes
1answer
32 views

When we used aop compile and classloader weaving?

What better use or maybe when we use : weaving as compile time , classload time or runtime which is default spring strategy? Could someone give me a practical example using weaving as compile time ...
0
votes
1answer
25 views

Can AspectJ find all variable declarations and log them in a method?

For example, I have a java method like this: public void hello() { String name = "Freewind"; String message = "Welcome"; System.out.println(message + name); } Then I want to use AspectJ to ...
0
votes
1answer
46 views

Changing an abstract class to non abstract with AspectJ?

As far as I know I can use AspectJ to replace an abstract method for a concrete implementation. Is it also possible to use AspectJ (or another AOP language) to change the definition of a class from ...
4
votes
1answer
152 views

OSGi WeavingHook Examples

Does anybody have any examples of using the OSGi 4.3+ Weaving Hook Service? What about with AspectJ, ASM, JavaAssist? Is anybody actually using OSGi WeavingHooks? The example in OSGi Core 5.0.0 ...
3
votes
0answers
73 views

Creating a pointcut in Aspectj for each Junit test in a testsuite

Hello Im having trouble integrating AspectJ with Junit testing. I need to get a different log for each test in a testsuite. So I need to know in my aspect when a new test case is being run and when ...
3
votes
1answer
89 views

How to get execution() pointcut's return type in @Around aspect?

I'm writing some aspect for our system's method input validation: Every method's return object all derived from a common base class which has a property holds return code. Pointcut defines which ...
0
votes
1answer
33 views

How to make method return type as the current type in AspectJ ITD?

I need to introduce save() method to any type annotated with my @Persistent annotation. This method simply saves the object into the underlying database and returns a copy of the object back with its ...
2
votes
2answers
264 views

Aspectj Pointcut for matching public method calls on annotated field

I want to write a pointcut that matches execution of public methods on an annotated field. This how ever does not seem to work. The get(@Important) works as you expect (on its own) but it will of ...
0
votes
1answer
188 views

AspectJ pointcut for annotated method on concrete class

I am using Spring's AspectJ with CGLIB proxying. I have an aspect defined as below, where I want it to advise public methods on concrete classes that are annotated with the annotation ...
0
votes
2answers
235 views

AspectJ pointcut for annotated PRIVATE methods

I want to create a Pointcut for private methods that are annotated with a specific annotation. However my aspect is not triggered when the annotation is on a private method like below. @Aspect ...
2
votes
2answers
51 views

how to crosscut a method from parent class?

Parent class: public class Animal { public String name() { return "my name"; } } Child class: public class Dog extends Animal { // no methods } I'm trying to crosscut a call to ...
0
votes
0answers
73 views

Combine logging and tracing with AspectJ

Firstly, I'd like to define the difference between tracing and logging as stated in book "AspectJ in Action", p.257: Most developers (and this book) refer to logging as an act of producing ...
0
votes
1answer
152 views

Problems whit AspecJ AOP Configuration in Spring : java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut

I am studying AspectJ annotation to configure AOP in Spring Framework reading this article: http://www.tutorialspoint.com/spring/aspectj_based_aop_appoach.htm Differently from this article I am not ...
0
votes
2answers
69 views

AspectJ - Exclude try-finally block into aspect

I have many methods like this: Connection connection = null; try { connection = new Connection(); connection.connect(); .... // method body } finally { ...
0
votes
1answer
118 views

Spring AOP Parameterized Annotation

I am new to spring AOP and struggling to achieve the following. I want to define an annotation @RequirePermission which accepts a parameter String or enum and based on that string/enum I will do some ...
0
votes
0answers
46 views

how can annotated aspectJ realize AOP on annotated controller in Spring mvc?

I've searched a lot of methods from google, but none of them worked well! My code snippets are as follows: Annotated Controller: @Controller @RequestMapping("/user") public class UserController { ...
0
votes
0answers
18 views

AspectJ: how to have a TypePattern shared among Aspects?

I need to share some TypePatterns among several aspects, but I can't find how can I define them once in one aspect and use it in another. Example: public aspect Aspect1 { public TypePattern ...
1
vote
1answer
187 views

aspectj get object to within pointcut

I have the following class: package Test; public class A { private B b = new B() { @Override public boolean someFunc() {return false;} } } What is the AspectJ pointcut to ...
0
votes
3answers
93 views

Spring AOP aspects ruined the context

I'm facing a pretty weird trouble. I use annotation-driven AspectJ in my App. When I try to proceed my method, I receive null pointers on my autowired fields. (In the service class, which methods I'm ...
1
vote
2answers
149 views

Is AspectJ required on the classpath when weaving at compile-time?

I asked this question a few days ago, and managed to get it working using compile-time weaving. However, when the application runs and it invokes the toString() method which I mixed into my DTO via ...
4
votes
1answer
178 views

Weaving in toString() implementation with AspectJ

Trying to weave in a default toString() method for a large number of DTOs, using compile-time weaving only. The goal is to return a JSON representation using the Jackson library. Followed the ...
0
votes
0answers
88 views

AspectJ Pointcut expression to intercept enum methods

Using AspectJ, I want to intercept every toString() invocation on an enum construct. For example, Assuming GridVisible is an enum that does NOT implement toString(): GridVisible gv = GridVisible.FE; ...
0
votes
1answer
131 views

AspectJ pointcut to method call (even if it's called on external libraries)

I'm having some difficulties using AJDT. One of the things I would like to have it's a record of every method called on a given type, for instance, LinkedList. What I observed it's that using the ...
0
votes
0answers
63 views

Adding Aspect without changing code of an already existing Java EE application

I am working on customizing a Java EE application. The Java EE app is based on Spring + JSF + EJB, and is already using aspects to advice certain beans. The problem is, the application does not have ...
0
votes
1answer
221 views

Pointcut matching all methods with a custom annotation [duplicate]

Possible Duplicate: @AspectJ pointcut for all methods of a class with specific annotation I am trying to write a pointcut for all methods of a class which have a custom annotation. Here's ...
0
votes
0answers
94 views

Spring MVC Disable/Advise parameter autocreation

Basically, what I'm trying to do is parse vars from the URL being access and then pass those in as parameters using an aspect and my own custom annotations. Unfortunately, when Spring invokes the ...
0
votes
1answer
97 views

Java - Spring AspectJ AfterThrowing

I have a method with following signature I want to log exception after catching by my point cut, rite now when i execute the code it throws the exception print on the console then comes to my point ...
0
votes
1answer
88 views

AspectJ based logging and profiling in Richfaces / JSF

I'm trying to create a logger / profiler for Richfaces based JSF Application using AOP with Aspect J. I have few queries on it. 1. Is it possible ? 2. Would I have issues with AOP proxy or would ...
6
votes
2answers
169 views

How to crosscut annotated methods and constructors?

This is what I'm doing: @Aspect public class MethodLogger { @Around("(execution(* *(..)) || initialization(*.new(..))) && @annotation(Foo)") public Object wrap(ProceedingJoinPoint point) ...
0
votes
2answers
148 views

Spring Transaction with AspectJ

I'm having a problem with @Transaction in Spring. Basically, no transaction is created with the following message: delaying identity-insert due to no transaction in progress I posetd a full ...
0
votes
1answer
65 views

how <aop:config> metadata is implemented to create proxy for the classes catched by pointcut

As much i get from the spring 3 documentation that there are two ways of AOP AspectJ - which include <aop:config> metadata in xml or using annotation @Aspect Spring own implementation - ...
1
vote
0answers
221 views

AspectJ and calling another method in @AfterReturning method

I'm starting to learn how to use AspectJ in Spring. I have the following class. I want to perform first method in new thread (long running task), so I thought this might be achieved using Aspect - ...
1
vote
1answer
137 views

How can I make sure that aspects generated by Spring roo are woven by a dependent project?

I have a Spring Roo multi module project. I noticed that after including the jar/module containing my domain model in another project, the aspects had not been woven leaving me with domain classes ...
1
vote
1answer
63 views

Executing AOP when some method is called from specific class

I am new to AOP. I can successfully execute the AOP when some method of some class is executed.But i want to execute the AOP when some method of some class is called from other class. Is this type of ...
8
votes
2answers
1k views

How to configure AspectJ with Load Time Weaving without Interface

On my project, I currently use AspectJ (not just Spring AOP due to some limitation) with the weaving at the Compile Time. In order to speed up the development on Eclipse, I want to do the weaving at ...
0
votes
1answer
108 views

Logging with aspects

Have a RESTful web-serice with Facade layer, Service layer and Dao layer. Trying to journalize all invokes of all methods of classes, marked with annotation @Log @Target({ElementType.TYPE, ...
1
vote
1answer
119 views

AOP interceptor to intercept all applications in same JVM

I am wondering whether it is possible to intercept all calls to say javax.persistence.EntityManager.flush(), across all applications running in same JVM (such as Glassfish domain). Following not ...
0
votes
1answer
121 views

Pointcut for method that changes a class variable

Is it possible to write a effective pointcut that matches a method that changes a class variable of a specific class type? The point of doing this is that my classes have a lastModificationDate that I ...
0
votes
1answer
324 views

Issue with Spring Roo's Data on Demand and maven-run integration tests

I use Spring Roo and I rely on Roo's data on demand for my integration tests. I recently realized that the very same integration tests that run smoothly in Eclipse break when I run them from Maven. ...

1 2 3 4 5 6