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 ...
0
votes
0answers
19 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 ...
2
votes
2answers
32 views
Is it possible to change method signature in AspectJ
My question: is it possible to change method signature in AspectJ?
For example, given class:
Class Foo {
@Test
public void shouldReturnOne(){}
}
Change into:
Class Foo {
@Test
...
0
votes
1answer
19 views
How to get Android Device Back key event in Aspectj
I want an event for android device back in aspectj. If i override onBackPressed() in code and same i use in aspectj like "pointcut onBackPressed() : execution(* onBackPressed());" i am getting the ...
0
votes
0answers
38 views
Standalone Spring app ( jar) conflicting with other web apps on weblogic 10
I have a standalone spring app that contains mainly aspecj aspects and few other spring managed beans and bundled in a jar with maven-assembly plugin with all the spring dependencies bundled inside ...
0
votes
1answer
20 views
Android Annotations and MonkeyTalk?
I just tried to update my project which uses Android Annotations to include the MonkeyTalk agent. However, as soon as I switch the project to an AspectJ project, all my Android Annotations references ...
0
votes
2answers
70 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
12 views
Spring AOP: @AfterThrowing execution pointcut never matches
I'm completely new to AOP. I need advice to write the correct pointcut. I have a service package that contains all service classes. All the classes implement the Service interface. This interface has ...
0
votes
1answer
40 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 ...
0
votes
1answer
34 views
Most used pointcuts
Regarding AspectJ and AOP in general:
What are the most used pointcut primitives?
Are there any statistics on this?
I think it could be execution and call, is that right?
Thanks.
0
votes
1answer
19 views
Before vs Around advice precedence in @AspectJ-Style annotations
I have converted a simple Spring project made with pure aop namespace xml coding to the same project but using annotations this time.
I've noticed that now the before-part of the around advice comes ...
1
vote
2answers
22 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
27 views
How configure aspectj compilation in playframework 2.1.1
I have added to plugins.sbt this declaration
addSbtPlugin("com.typesafe.sbt" % "sbt-aspectj" % "0.9.0")
Now I would like to configure this plugin to compile my java controller classes using aspect ...
-2
votes
0answers
19 views
AspectJ : how to write an Advice [closed]
I have 5 classes(at the bottom) and i need to write an AspectJ advice :-
Question) add methods/constructors and variables (if you deem necessary) to the Inventory
and ShoppingCart classes so that ...
0
votes
0answers
47 views
spring aop - exception while creating advice around JdbcTemplate methods
I've a web application that uses apache dbcp and spring jdbc to perform database operations on an oracle database. I need to write a performance logger that logs the individual times of each database ...
0
votes
0answers
43 views
skip aspect when running Junit test - maven test
I have aspects in my spring mvc project. It uses Before annotation to check authorization access before every controller method. Now I need to writes some JUnit Test cases for Spring MVC controller ...
0
votes
1answer
17 views
Add new Constructor to an existing Java Class via AspectJ
Trying to clean up some nasty code, for which we dont have the source code. Imagine something like this:
public class Driver{
private String paramA;
private String paramB;
new ...
0
votes
1answer
36 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 ...
1
vote
2answers
29 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
19 views
AspectJ “declare error” not catching method as expected. Why?
I defined a Point class:
public class Point {
...
public String toString() {
return "abc";
}
}
as well as an aspect that should take care that no one overrides its toString() ...
0
votes
1answer
22 views
Why do I get a not exposed to the weaver warnings when making my Spring project?
I seem to get a bunch of warnings like this when I make my Spring project. The project uses Compile Time Weaving and various Spring annotations like Transactional, Autowired, and Configurable.
I have ...
0
votes
1answer
46 views
Null Ponter Exception while using Monkeytalk tool
Hello I have implemented MonkeyTalk library in my app I used following steps given at https://www.gorillalogic.com/monkeytalk-documentation/monkeytalk-getting-started/install-agent/android.
Through ...
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 ...
0
votes
1answer
55 views
Play 2.1 / taking in account a javaagent while running tests
My goal is to launch my integration tests contained within my Play app.
To do so, I used to launch them through Intellij.
Those tests needs Spring aspectJ weaving, thus I precised in my Intellij test ...
0
votes
0answers
22 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 ...
0
votes
0answers
22 views
no annotation found on method weaved by this annotation
i have an aspect that matches on methods with an annotation (this works otherwise this code wouldn't be called), now i use org.springframework.core.annotation.AnnotationUtils to get the annotation, ...
0
votes
1answer
44 views
How to profile the aspect creation process of Spring AOP?
Suppose I want to create an aspect which checks whether my repository method returns null or not:
@Aspect
public class NonNullReturningAspect
{
@Around("anyPublicRepositoryMethod() && ...
1
vote
1answer
29 views
AspectJ pointcut for constructor calls to different classes - identify type of object created
I am using AspectJ and I have defined a pointcut to capture the execution of the constructor methods for a couple of classes as follows:
pointcut newobject(): execution(class1.new(..) || ...
1
vote
1answer
23 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
23 views
Can AspectJ replace “new X” with “new SubclassOfX” in third-party library code?
I am looking at AspectJ to see if perhaps we can use it in our test suite.
We have a rather large third party Java communications library hardwired to use its own classes (which do not implement any ...
0
votes
1answer
77 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
2answers
47 views
AspectJ pointcut for constructor using java.lang.reflection
The following example is a reduction of the real problem in that it tries to simplify is as much as possible.
I have a java interface, and several objects that implement that interface, like:
public ...
0
votes
1answer
29 views
Inter Type Declaration on Compiled Class File
Is it possible to do Inter Type Declarations with AspectJ on Compiled Class Files at Load Time Weaving?
As an example: I compile some Groovy code and want to add fields or methods with IDT.
0
votes
0answers
24 views
Access org.aspectj.weaver.Advice
Is it possible to get all org.aspectj.weaver.Advice or Aspect Objects from the AspectJ Framework?
If it is, how?
I dont't want to deal with Reflections, because I have to parse everything and it's ...
0
votes
0answers
33 views
Method not executing with aspectj
I want to simply log some information when a particular method in my code gets executed so I implemented an aspect using spring and aspectj. The aspect is as followed:
@Aspect
public class ...
0
votes
0answers
62 views
AspectJ Load-Time Weaving a Weblogic application
I am trying to weave a Weblogic application using AspectJ, I am using the Load-Time weaving mode through the java option -javaagent:pathto/aspectjweaver.jar.
Those are the steps I followed :
1) 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
50 views
How to build aspectj project using maven?
I have created a Aspectj Project in Eclipse ide but i need to build it using maven.
I have maven-aspectj plugin but don't know how to use it.
0
votes
1answer
36 views
Using CDI except a Java Web Application
From Doc i m trying to learn Context and Dependency injection .
In tutorials CDI seems can be only use in a Web application.Can i use CDI in a Java Console project ? And How? I added libraries like ...
1
vote
0answers
26 views
Intercepting MongoDB calls using AspectJ in a Spring project
I am using Spring and the MongoDB java driver and I am trying to intercept all calls on the mongo DBCursor object to view queries before they get executed.
I've been trying to do this using the ...
0
votes
1answer
53 views
Capture successful login with AspectJ and Spring Security
i'm using spring security and AspectJ to log application's behavior. I need to capture a successful login and log it. My spring security configuration:
<security:http auto-config="true" ...
0
votes
0answers
18 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
1answer
100 views
Using @Configurable to inject spring bean in JPA entity-listener
I try to use @Configurable to inject spring bean in @PostPersist listener.
@Configurable
@EnableSpringConfigured
public class BankAccountAuditListener {
@PersistenceContext
private EntityManager ...
0
votes
1answer
39 views
How to catch all newly created objects of type or subtype Widget with AspectJ?
In order to get all newly instantiated widgets I tried the following code
after(final Widget widget) : execution (* Widget+.new(..)) && this(widget) {
...
}
but it fails hard every time ...
1
vote
1answer
20 views
How to pick out calls to methods with default visibility?
It is possible to pick out calls to methods with any of the three visibility-modifiers, e.g.
call(public * TestClass.*(..));
but not for those with default visibility.
I can think of this way ...
0
votes
1answer
33 views
Impersonating jar files of a RCP Application. What factors may make it go wrong?
I was wondering whether it was possible to, given a RCP application, with all its plugin structure, switch some of its original jar files by other bytecode modified by me.
I tried to hack with ...
0
votes
1answer
50 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
12 views
catch boolean Object.equals(Object) with aspectj
Is there a way to catch Object.equals(Object ) with AspectJ?
I tryed:
@Pointcut("execution (* *(..))")
or
@Pointcut("call (* *(..))")
but nothing happens.
0
votes
1answer
23 views
Way to oblige AspectJ to throw a runtime error if it can't find/put to run the given aspect files?
I am trying to run a complex application with complex classpaths and JVM options with some load-time aspects woven in. At the moment it doesn't seem to be doing anything, but I can't know for sure if ...
0
votes
1answer
24 views
Run AspectJ with load-time weaving on a RCP .exe application. How?
I'm in desperate need to run some AspectJ code (weaving it at load-time) but the application under consideration is being deployed as a RCP executable. Is it possible to run AspectJ against this RCP ...
0
votes
0answers
31 views
Getting weird behavior from junit while running a Weka test suite
I intercepted all method calls in Weka at runtime with aspectj to investigate its behavior with different interception mechanisms. I used one of the test suites (weka.core) already existed in Weka ...






