0
votes
1answer
29 views

How to get IDE support for Aspect J Working in Eclipse

I am working on a Spring Roo/ApsectJ project at the moment. I am able to build a project and run it without any issues, implying AspectJ is doing correct weaving at compile time, however in Eclipses I ...
1
vote
1answer
28 views

Eclipse: Compile AspectJ class with Java classes

How would I compile .aj class in my Eclipse Web Project? I already have AspectJ Development Tools installed in Eclipse Juno. But it didn't make any difference. Using Tomcat 6 server to deploy ...
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
1answer
101 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
105 views

Cannot create and save .aj files in eclipse with AJDT plugin

recently I started learning the wonders of AspectJ (http://www.eclipse.org/aspectj/doc/released/faq.php) and decided to use it on a program. To start I downloaded the lates stable version of aspectJ ...
1
vote
1answer
89 views

AspectJ causing “Editor does not contain a main type” error

After installing the AspectJ Development Tools into Eclipse, the "Run" button and the Ctrl-F11 shortcut both become nearly useless: using them (or the Debug button) will throw an "Editor does not ...
0
votes
1answer
133 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
169 views

AspectJ - NullPointerException when building and compiling project

Edit: I fixed this by starting an entirely new workspace and creating new projects. Everything compiles and builds now. I can't answer my own questions yet, so I'll just put this here! I'm not ...
0
votes
1answer
95 views

Creating aspect for multiple plugins in eclipse RCP project

I am developing a rcp project having multiple plugins and i am using AJDT aspectJ for logging purpose in the application. I have created two aspects one for info logging and one for exception logging ...
0
votes
0answers
351 views

AspectJ LTW with “second” aop.xml file

I recently started using AspectJ LTW. I use Eclipse with the AJDT. I basically use the "outjar" option to create my "AspectJ Library (.jar file)" with the compiled .aj files. Next step is to use ...
0
votes
1answer
230 views

Remove AspectJ Content Assist suggestions after plugin uninstall

I would like to delete AJDT completions from CTRL+Space menu. I had AspectJ Tools installed, but I removed the plugin, but the suggestions remain.
0
votes
1answer
583 views

Using AspectJ/AJDT in RAD 7.5.5

I'm using RAD 7.5.5. I installed AJDT plugin from the download site: http://archive.eclipse.org/tools/ajdt/34/update/ I converted one of the existing Java projects to an AspectJ project, added an ...
0
votes
2answers
129 views

ajdt.pdebuild.scripts not set during AJDT headless PDE build

I have an eclipse rcp application being developed in eclipse 3.5. I am able to successfully execute pde headless build in ant (from command shell outside eclipse) via the following target entry: ...
2
votes
3answers
693 views

Spring Data Graph and Eclipse

Spent 2 days trying to understand how to enable Eclipse work with Spring Data Graph, have no idea yet. The code is like this: @NodeEntity public class Person { public Person() { ...
10
votes
4answers
3k views

Maven/AJDT project in Eclipse

I need to use aspectj in a maven project. I installed the maven plugin for eclipse (m2e), the maven aspectj plugin, and also AJDT for Eclipse. So now, when i open a new project i have "Maven Project" ...
0
votes
2answers
522 views

Compiling errors occur while convert a project to AspectJ project with AspectJ eclipse 3.4 plugin, ajdt2.0.1

Hey, I wanna to add AOP to my web project. I download ajdt2.0.1 for eclipse 3.4.1. But when I convert this project to AspectJ projects, I got so many compile errors which shouldn't occur. Such as ...
0
votes
1answer
158 views

Eclipse and AspectJ (AJDT): Content assist on pointcut definition

I was wondering if there is a way to activate the auto completion on the primitive pointcut definition in eclipse. It is very annoying to write the full qualified name of a class method by hand. ...
2
votes
1answer
946 views

How use AspectJ in Eclipse plugins

As mentioned in a previous question I am trying to check that all my ResultSet are closed. For that I want to use AspcetJ but after 1 day of hard fight I am not able to use aspects in a plugin ...
3
votes
2answers
2k views

Why I got “advice has not been applied” warning?

Why does the following code: pointcut callsToList() : call(* List.*(..)); before(List l) : callsToList() && target(l) { System.out.println("cool"); } generates the following warning: ...
5
votes
2answers
2k views

AspectJ: How to get pointcuts to advise classes located in other projects

This should be simple. Question How do you get a pointcut in one project to advise the code/classes within another project? Context I'm working in eclipse with two projects. For ease of ...
1
vote
2answers
423 views

How to script the “Convert to AspectJ” action when creating a new Eclipse project?

I have a command line script that creates a (mostly) ready-to-go Eclipse project for me. It uses Maven's eclipse plugin, and has some other scripted steps such as copying our code standard settings ...