Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
884 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 ...
4
votes
3answers
1k views

How to get Scala plugin and AJDT to be installed in same Eclipse

I get an error when trying to install both AJDT and Scala 2.7.5 plugin into Eclipse 3.5. I remember seeing a message at one point that there was a known problem with the two being installed, and the ...
2
votes
3answers
243 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() { ...
2
votes
1answer
236 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 ...
2
votes
1answer
307 views

Autocompletion in Eclipse for Roo project

I've got a Roo project where I've made a couple of entities, and when I load up the project in Eclipse it loads up fine, but if I i.e. make an instance MyEntity entity and then write entity. I don't ...
1
vote
1answer
72 views

How to reflect modified abstract syntax tree in JDT back to original java source file.?

Kindly refer "write it down" section of article http://www.eclipse.org/articles/article.php?file=Article-javaCodeManipulation_AST/index.html I am parsing a java source code file which has method with ...
1
vote
4answers
286 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" ...
1
vote
2answers
571 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: ...
1
vote
1answer
649 views

m2eclipse .classpath generation with AJDT

I am using m2eclipse 0.10.2 and eclipse helios/ajdt. I remember that m2eclipse is managing the inpath for eclipse configuration (at least in eclipse galileo) right now, it doesn't manage it for me ...
1
vote
2answers
187 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 ...
1
vote
1answer
120 views

AJDT Advice Marker Configuration for Maven Defined Aspects

Currently, I have a Maven project which inherits from a parent pom defining two aspect jars. The advice markers are displayed for both aspect jars via the m2eclipse AJDT integration. However, in ...
0
votes
1answer
26 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
48 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: ...
0
votes
1answer
386 views

Errors running builder 'AspectJ Builder' on project

I am working on SpringSource Tool Suite with Spring Roo. Everything was working well up until few days ago after I installed GWT plugin (I think this might be a problem, I am not sure ). Every time ...
0
votes
2answers
211 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
87 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. ...
0
votes
1answer
307 views

Using AspectJ on JSP

I am trying to use AspectJ on my java beans, which I will use eventually in a JSP. Can anybody lead me to do this? Because I really cannot succeed, even though the thing seems to be trivial! Also, ...