Tagged Questions
0
votes
1answer
19 views
How to run my project so that they use my AspectJ aspects
I am a beginner to AspectJ. I am using it to take screenshots in my webdriver programs. Following is my package structure.
I want to know that how do I run my programs in Browser class so that it ...
0
votes
0answers
45 views
Debugging, Stepping through AspectJ woven classes methods
I'm using Spring(3.2.2) + AspectJ (1.7.2) Load Time Weaving.
Developing using Netbeans 7.3.
I've noticed that I cannot "step over" while debugging methods in classes that were woven by AspectJ, for ...
1
vote
2answers
41 views
Compile AspectJ code to Java 6 code with a AspectJ 1.7 installation
I am developing using Eclipse 4 and AspectJ's latest version. I am in the process of replacing a Java 6 library with a modified one (binary weaving). The problem is that the code being currently woven ...
0
votes
1answer
32 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
31 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 ...
1
vote
1answer
86 views
Can't add execution pointcuts to external jar classes with AspectJ. Why?
I am having some trouble trying to detect when SWT's Shell.setText() is being executed.
I created two simple pointcuts, and while one works, the other does not:
From my understanding, this happens ...
0
votes
1answer
72 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
60 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
15 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
1answer
79 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 ...
0
votes
2answers
93 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 ...
3
votes
1answer
66 views
Why does proceed() give an error
I have the following aspect:
aspect NullifyNoResultException {
Object around(..) : execution(public Object com.example.*.*(..) {
try { return proceed();
} catch ...
0
votes
1answer
126 views
Eclipse debug stepping with AspectJ
I have Eclipse setup with "The AspectJ Development Tools" plugin. I'm trying to debug some code that uses AspectJ and step through it, but it is unable to match up the source lines since AspectJ has ...
2
votes
1answer
119 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
100 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
65 views
AspectJ not working with Maven in my webapp (Eclipse)
I have a Webservice Maven project running on Websphere 8.0 and im trying to implement AOP with Aspectj in it without any result.
The aspect class definition its ok (I can tell because its the same in ...
0
votes
1answer
68 views
Eclipse misunderstands exception-throwing aspect
In Eclipse + AJDT, I implemented a method annotation to check for authorisation as follows.
Annotation:
@Retention(RetentionPolicy.RUNTIME)
public @interface Secured {}
Aspect:
public aspect ...
0
votes
0answers
77 views
How to get AspectJ working in my exported Eclipse 4 RCP product
I am using AspectJ in my code (for logging), when i run my application from Eclipse (Launch an Eclipse application) everything works fine. But when i export my product with "Eclipse Product export ...
0
votes
0answers
130 views
Maven Aspectj Eclipse(Referenced Project)
i want to include some aspects from a referenced project in eclipse juno via maven but maven don't create a correct eclipse config. I miss the aspectj buildpath.
relevant parts of my Pom:
(In ...
1
vote
1answer
312 views
Why can't eclipse enable JDT Weaving?
I have created a simple Spring Roo Project in Eclipse Indigo, where the jpa entities where generated using the dbre command. When I want to add methods to some class, I'm not able to use the methods ...
0
votes
0answers
176 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 ...
1
vote
2answers
235 views
Quickly push-in refactor large number of Spring Roo generated methods in .aj files
Is there a faster way to push in multiple methods from Roo-generated aspects to Java classes than doing them one at a time in an IDE that supports the operation?
I want to push in all methods from ...
0
votes
1answer
252 views
How to create jar with aspectj? Eclipse
I want to create jar file with support AspectJ.
My manifest.mf(use default-package):
Manifest-Version: 1.0
Main-Class: gui
\n
I added manifest in eclipse. My errors:
exception in thread main ...
0
votes
2answers
337 views
AspectJ - Creating a global Logger field using an Inter-Type Declaration
I'd like to create an Inter-Type declaration that declares a (static final) Logger instance inside each class.
The constructor should be passed the enclosing class Klazz.class value:
@Aspect
public ...
0
votes
0answers
59 views
maven eclipse gwt resources aspectj
I am upgrading a large GWT project to Version 2.4.
I am splitting it up in several maven modules.
For some of the classes the GWT ompiler and the GWT ValidationTool need the source code in order to ...
0
votes
0answers
75 views
Eclipse AspectJ special syntax highlighting in source code if pointcut matches
I just got into a big project that makes use of aspects. Aspects doesn't make it easier to understand since a pointcut definition could match on any method. Is there a plug-in out there for eclipse ...
0
votes
0answers
130 views
GWT+shiro+aspectj+eclipse
So I'm trying to use Apache Shiro on the server side of GWT (as Jetty servlet) with Eclipse. As I found out it requires AOP for annotations to work so I added AspectJ to the Referenced Libraries. ...
0
votes
1answer
504 views
Spring roo project doesn't compile in eclipse
I have to maintain a spring roo project so I imported it in eclipse, I can build it, if I run roo command
"perform eclipse"
it works.
The problem is that eclipse show compilation errors like :
...
0
votes
1answer
313 views
Setting up Aspectj tools
The problem must have a simple answer but I cannot get it.
I need to use the org.eclipse.core.resources and org.eclipse.core.runtime libraries with the IResources,IProject,IWorkspace,... classes. For ...
0
votes
2answers
487 views
adding src/main/aspect as a source folder to an eclipse maven project
I would like to be able to configure the pom.xml so that when I import it into eclipse it specifies src/main/aspect as an eclipse source folder.
At the moment, importing creates the default source ...
1
vote
3answers
752 views
AspectJ works with Java 7?
I instaled AspectJ in Eclipse (AJDT), but the specific methods of Java 7 are marked as errors when I use the AspectJ project.
My doubt is if AspectJ works with Java 7 or this is an issue with Eclipse ...
0
votes
2answers
1k views
How to enable compile-time aspectj weaving for Eclipse embedded Tomcat
I'm having a problem trying to make eclipse and aspectj work for Dynamic Web Projects. I'm looking for compile time weaving so I can use the Eclipse Visualisation features.
I've followed the steps ...
0
votes
4answers
1k views
Handling Roo generated AspectJ files in Eclipse
I have generated a sample roo project using command prompt and then imported it to the eclipse.But i found that most of the important files are in aj extension.How can i change these files into java ...
0
votes
1answer
369 views
Ist there a way to run JUnit 4 tests with Spring AspectJ LTW without using a jvm agent?
I have a spring tomcat project configured with aspectJ LTW, I would like to run unit tests with AspectJ LTW. According to the spring docs running with LTW for a standalone JVM requires passing in ...
0
votes
1answer
239 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.
3
votes
1answer
187 views
How to set a static variable in every class?
I am trying to do something very simple. I have a com.mypackage.Logger logger class whose instantiation statement I would like to "insert" into every single class like so: private static Logger LOG = ...
0
votes
2answers
847 views
AspectJ: VerifyError
I'm experimenting with Aspect-Oriented Programming. I've installed the AspectJ-Plugin in Eclipse and followed all the steps mentioned in this tutorial.
All connections between the created aspects ...
0
votes
4answers
737 views
Maven project not being treated as Java in Eclipse
I'm working on a project that has lots of different Maven projects. I've been doing a bunch of JUnit testing on these projects, and usually this goes well. I open up Eclipse, right click in package ...
0
votes
1answer
137 views
Where do I specify ajc compiler options when using Eclipse?
I would like to troubleshoot my aspects. http://www.eclipse.org/aspectj/doc/released/pdguide/messages.html suggests to start by passing certain flags (like -verbose or -XLint or -showWeaveInfo) to the ...
0
votes
2answers
920 views
Android with AspectJ and building it with Ant on Eclipse
I'm new to Android and wanted to use AspectJ with it.
I had searched couple articles online and follow the instruction to have it working:
...
0
votes
1answer
197 views
sharing a single .aj AspectJ aspect among multiple Eclipse plug-ins within a single stand-alone Eclipse RCP app
Quick disclaimer: I am running Eclipse 3.5 and I cannot upgrade to a more recent version. I really do not want anyone to construe this as disrespectful, but please do not ask me why.
I would like to ...
5
votes
4answers
766 views
Eclipse: contradicting warnings
Here's the code snippet:
class MyClass {
private native void foo();
}
For the above, Eclipse (namely, 3.7.0) gives a warning
The method foo() from the type MyClass is never used locally
...
2
votes
2answers
930 views
Let eclipse use maven to compile/weave my code
I am using compile time weaving with aspectj to weave in Spring's transactional code so I can use @Transactional. When i run maven compile from inside Eclipse (which uses the aspectj-maven-plugin), ...
2
votes
3answers
706 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() {
...
1
vote
1answer
173 views
Replace Eclipse Compiler with AspectJ ajc
How can I replace the compiler in Eclipse with ajc so that it compiles as I edit?
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" ...
1
vote
1answer
233 views
Trouble installing AspectJ on Eclipse 3.6.1
When following these instructions, I get the following error dialog
If you cannot read the message, it reads as follows
An error occurred while collecting
items to be installed session ...
0
votes
1answer
656 views
Spring-roo warnings. And removal !
I have been testing Roo in the last few days..
I am getting the following 3 warnings (on both samples and my own projects) and I don't know why. I haven't used AspectJ before either so I have no idea ...
5
votes
4answers
990 views
Mixing AspectJ and Scala in an Eclipse Project
Any one been able to get a Scala and AspectJ (AJDT) to play nicely together in Eclipse 3.6?
It seems Scala's weaver conflicts with AspectJ's weaver.
I'm hoping I'm just missing something.
Edit: ...
1
vote
1answer
170 views
aspectj eclipse plugin to generate pointcuts and advice signature
it's quite tedious to manually type a pointcut definition and advice signature for a method; is there any eclipse plugin that does it for you?
thanks



