Some aspects of system implementation, such as logging, error handling, standards enforcement and feature variations are notoriously difficult to implement in a modular way. The result is that code is tangled across a system and leads to quality, productivity and maintenance problems. AspectJ is a ...

learn more… | top users | synonyms

0
votes
1answer
54 views

Issues when attempting to compile AspectJ tutorial application

I was trying to follow this tutorial: http://andrewclement.blogspot.pt/2009/02/load-time-weaving-basics.html but I stumbled across a couple of problems: To start with, my system didn't have the ...
0
votes
1answer
44 views

Jenkins build randomly fails with a StackOverflowError during AspectJ weaving

Our Jenkins (maven) build randomly fails with the following error stack: -- (StackOverflowError) null null java.lang.StackOverflowError at org.aspectj.weaver.World.resolve(World.java:273) ...
0
votes
2answers
53 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
59 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 ...
0
votes
0answers
43 views

Overwrite aspectj annotation using XML file

We used Spring-roo reverse engineering tool in order to generate a Java class library that describe the structure of a database. We are using this auto-generated Java library to access data ...
0
votes
1answer
58 views

Is there a way to weave jUnit tests with AspectJ being in two different projects?

I´m trying to intercept webdriver methods inside JUnit tests that are in one java project. I've created another project with Aspects but could not integrate them both to work together. Basically I ...
0
votes
2answers
52 views

How to initialize AspectJ aspect without using a constructor?

My AspectJ aspect looks like this: @Aspect public class MyAspect { private Child child; public MyAspect() { this.child = new Child(); } @Around("... skipped ...") public Object ...
0
votes
1answer
26 views

Is is possible to produce a generic aspect?

for example this observer pattern https://github.com/eclipse/org.aspectj/blob/master/docs/sandbox/ubc-design-patterns/src/ca/ubc/cs/spl/aspectPatterns/patternLibrary/ObserverProtocol.java could be ...
2
votes
1answer
61 views

AspectJ: How to pick the execution of non-annotated methods of subclasses of a given class?

I'd like to intercept the execution of non-annotated methods of any subclass of a given class. For instance, say I have class Base: public class Base { public void baseMethod() { //shouldn't be ...
6
votes
2answers
125 views

Web Data Streaming in Java EE

we have a design like this : our installed service upon tomcat has a method getDatabaseData(String request) (RMI Client) which receive data from database using (RMI Server implementation) existing ...
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 ...
1
vote
1answer
37 views

AspectJ around Mule MessageReceiver

I'm looking to wrap an aspect around a Mule Flow, IE I'd like to define an @Around that would be triggered when something enters a Mule flow, so that I can perform my own statistics gathering. I ...
0
votes
1answer
33 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
38 views

aspectj: How to weave aspects from a library into user code?

I have a library with some classes and a few aspects in it. Say AspectedLib.jar is the file that contains such definitions (created in eclipse, with "export jar file with aspectj support"). If I ...
0
votes
1answer
13 views

Why does aspect wants return type int?

The following aspect give me a "This method must return a result type of int" package CH.ifa.draw.framework; public aspect Trace { after() returning (ConnectionFigure figure): call(*.new(..)) ...
0
votes
2answers
70 views

Use AspectJ in an android library project

I want to try and use AspectJ as part of an android library project. I tried creating an android library project and used annotation based style to create pointcuts. The problem is that the aspects ...
0
votes
1answer
50 views

Calling methods declared in an aspect

This page shows how one can add methods to existing classes and then shows how to declare methods inside the aspect that call those additional methods. This is the code from that page: aspect ...
0
votes
1answer
52 views

Aspect Maven Plugin 'overriding' already enhanced Datanucleus classes

I'm using the aspectj-maven-plugin together with datanucleus enhancement done by the appengine-maven-plugin. In case I define the aspectj-maven-plugin before the appengine-maven-plugin everythings ...
0
votes
1answer
61 views

Local Variables in AspectJ

I'm implementing an invariants extension to the java language. I'm implementing the parser for my new language and annotated AST as an intermediate representation. Now I'm thinking of using AspectJ to ...
0
votes
1answer
37 views

Pointcut that will capture constructor calls

I am trying to define a pointcut which will capture all the constructor calls regardless of the modifier, return type, or class. I have used the following code after():execution(* * * .new(..)) I ...
3
votes
1answer
101 views

AspectJ & Maven warning: “Advice defined in … has not been applied?”

I'm trying to weave some aspects at compile time into a project that becomes a WAR. The aspects advise classes that are within the same project (though in different packages). I get the warning: ...
0
votes
1answer
26 views

Discarding an aspect instance before the object (“this” or “target”) gets garbage collected

I know that aspect instances (due to perthis or pertarget) get automatically disposed along with their object, but I was wondering if there is a way of doing this programmatically at any point of the ...
2
votes
2answers
262 views

Joinpoint VS ProceedingJoinPoint in AOP using aspectJ?

Can any one tell me what is the difference between Joinpoint and Proceedingjoinpoint ? When to use Joinpoint and Proceedingjoinpoint in the method of aspect class ? I used the JoinPoint in my ...
0
votes
0answers
149 views

SPRING AOP: error at ::0 can't find referenced pointcut selectAll

i read a lot of topics about this problem but i haven't solved yet... maybe i'm searching too far the solution. I have the followings classes: package com.aspects; import ...
1
vote
1answer
49 views

How to run ajc from Java?

I'm trying to run ajc compiler from Java (not from Maven or Ant!). The question is which Maven dependency do I need and which class is an entry point? The best option I have now is ...
0
votes
1answer
70 views

How to inherit/replace a java final class?

I'm making a tool to perform several checks in runtime (this is going to be runned in the CI server) and one of the things that I need it's too change implementations of some classes to give the data ...
1
vote
2answers
280 views

logging with AOP in spring?

I am new to spring in my office . So there is no guidance for me. I need to implement the logging with the AOP using the log4j. I have implemented the logging without AOP in basic spring MVC ...
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 ...
1
vote
1answer
105 views

SBT / Spring-AspectJ / compile-time weaving

I'm using scala 2.10, sbt 0.12.2 and Spring. I would like to enable Spring-AspectJ compile-time weaving with SBT. I know that a great Maven plugin makes that work: <plugin> ...
0
votes
1answer
186 views

Error when using AspectJ AOP with Java 7

I've updated Java to version "1.7.0_09-icedtea" (previously it was 1.6) and get the following message: Instantiation of bean failed; nested exception is ...
0
votes
3answers
116 views

AOP using AspectJ not working in spring?

My Aspect class will be , @Configuration @EnableAspectJAutoProxy @Component @Aspect public class AspectClass { @Before("execution(* com.pointel.aop.test1.AopTest.beforeAspect())") public ...
0
votes
1answer
62 views

aspectj prevent loadtime weaving recursively

To sketch to problem a little: We are using a liferay portal solution for our websites and to add some functionality and fix bugs we are using aspects within the portal. The amount of aspects on it's ...
0
votes
1answer
75 views

Eclipse, WebSphere7.0, Maven: AspectJ does not weave code during hot deployment

My System Information: IDE: Eclipse Blue 10.0, Server: Websphere 7.0 Build Management Tool: Maven 3.0 I perform compile time weaving in my Maven project using below configuration: ...
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 ...
0
votes
1answer
156 views

Spring / @Transactional with AspectJ is totally ignored

I use Spring-Data Neo4j 2.2.0-RELEASE. (my following issue would be applicable to any other kind of entity mapping, why not JPA) In my project, I have a public method annotated with @Transactional ...
0
votes
2answers
84 views

How to enable debug symbols in eclipse using AspectJ?

I'm trying to access the name of a parameter using aspectJ, but I always get arg0 instead of the real name. I found that I should activate java debugging options with -g parameter at AspectJ JoinPoint ...
0
votes
0answers
31 views

AspectJ Project in WebApps

I want to build a web application project with a business tier written in AspectJ. My question is how can I run an AspectJ project on web? Should I use EJB's? I've heard somethings about Spring-AOP ...
0
votes
2answers
79 views

AspectJ AOP and Spring together

I want to use AspectJ AOP and Spring (for DI) together but I get following exception: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class I use IntelliJ IDEA 12 ...
0
votes
1answer
104 views

Installing AspectJ Development Tools plugin (AJDT) into Eclipse

I am trying to install the AspectJ Development Tools plugin (AJDT) into Eclipse (v3.8). My goal is to achieve the results illustrated on this web page: ...
1
vote
1answer
106 views

Aspectj - intercept HTTP request

Is it possible, using aspectj or other features in spring to intercept a HTTP request and then based on some logic return without executing the target method? I'm trying to create a wrapper around my ...
4
votes
1answer
156 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
74 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 ...
2
votes
1answer
49 views

How is the AspectJ cflow pointcut implemented?

How does AspectJ check if the execution is happening in the control flow of, say, a method? It could be a very useful insight, to be able to implement the functionality on its own, outside of an ...
0
votes
1answer
24 views

aspect declare @type

I'm trying to solve the following problem: I have an aspect defined like this: public aspect ComponentAspect { declare @type : uk.co.xxx.* : @Component; } As expected it annotates everything in ...
1
vote
1answer
72 views

Aspectj around advice for field and class initializaton

Im implementing kind-of monitoring framework for my application. Basic idea is to use Aspectj to weave a piece of code that exposes variable anotated with certain annotation via JMX. So i use pointcut ...
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
3answers
294 views

Spring AOP: What's the difference between JoinPoint and PointCut ?

I'm learning Aspect Oriented Programming concepts and Spring AOP. I'm failing to understand the difference between a Pointcut and a Joinpoint - both of them seem to be the same for me. A Pointcut is ...
0
votes
0answers
319 views

Spring AOP and ClassNotFoundException: org.springframework.core.convert.converter.ConvertingComparator

I am trying to switch our project from AspectJ to Spring AOP. We're using AspectJ annotations and method execution point cuts which are supported by Spring AOP. We had no problems with compile-time ...
0
votes
0answers
42 views

Error message: Can't ask to parameterize a member of non-generic type

My setup is vaadin, mybatis and spring. Now i integrated spring with vaadin with the vaadin tutorial everything works perfect. But when i'm using @Configurable(preConstruction = true) on a custom ...

1 2 3 4 5 19