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 ...
0
votes
0answers
39 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
2answers
74 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
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
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
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
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 ...
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
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() && ...
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 = ...
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
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
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, ...
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 ...
2
votes
2answers
273 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
153 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
2answers
296 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 ...
1
vote
1answer
106 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
189 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
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 ...
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 ...
0
votes
0answers
327 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 ...
0
votes
0answers
38 views

load time weaving doesn't work for EAR lib folder

I'm trying to use Spring aspectj with load time weaving. LTW is working if the classes are placed in war module's lib folder. But aspectj isn't weaving classes that are placed in EAR's lib folder. ...
0
votes
0answers
80 views

Spring @Configurable on abstract class: the hierarchy of the type is inconsistent

I am using Eclipse Juno with AspectJ and compile time weaving, and I see this annoying error message when I have this scenario: @Configurable(preConstruction = true) public abstract class ...
0
votes
2answers
48 views

@Around advice throwing errors

I have the following in my aspect. Looks like the execution patter might be the cause. I hope someone could help me finding whats wrong with the following advice. @Around(value = "execution(* ...
0
votes
0answers
70 views

Interceptor to set connection.setReadOnly(true) throws Transaction Error

I am trying to route all Reads to a MySQL slave by intercepting a spring Transaction and setting connection.setReadOnly(true). My interceptor uses aspectJ to create Aspects and looks like so - ...
0
votes
1answer
281 views

How to make Spring AspectJ annotations work in Java 6/7

What changes do I need to make to the below config files to get maven to compile my Java 7 project with Spring Aspects (the one with annotations)? pom.xml webapplicationContext.xml etc.... Here's ...
0
votes
3answers
248 views

Spring - creating objects with new operator using @Configurable & @Value annotations

Is it possible to use @Configurable on a class that's weaved using AspectJ and get Spring to load in values on fields/methods which are annotated with @Value? I know its possible with @Autowired and ...
0
votes
1answer
195 views

AspectJ pointcut for annotated method on concrete class

I am using Spring's AspectJ with CGLIB proxying. I have an aspect defined as below, where I want it to advise public methods on concrete classes that are annotated with the annotation ...
0
votes
2answers
249 views

AspectJ pointcut for annotated PRIVATE methods

I want to create a Pointcut for private methods that are annotated with a specific annotation. However my aspect is not triggered when the annotation is on a private method like below. @Aspect ...
1
vote
1answer
262 views

Compile Time Weaving Null Pointer Exception

Edit 7: The problem seems to be how to get @Configurable working with HttpSessionListener, a workaround is suggested, but I'dd prefer not to to interact with the WebApplicationContext directly: ...
1
vote
2answers
39 views

How to search for all transactional methods in Spring that will not work with autoproxy?

I have an application that is using Spring AOP with AspcetJ, and I want to convert it so that it can be used with spring auto proxy. Which means that I need to go through the code base looking for ...
0
votes
1answer
162 views

Problems whit AspecJ AOP Configuration in Spring : java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut

I am studying AspectJ annotation to configure AOP in Spring Framework reading this article: http://www.tutorialspoint.com/spring/aspectj_based_aop_appoach.htm Differently from this article I am not ...
0
votes
2answers
138 views

RemoteServiceServlet with spring autowired gives nullpointerexception

I'm using GWT with Spring. I encountered the problem of using an @Autowired bean in a RemoteServiceServlet. For some reason this doesn't work automatically and I need to use @Configurable to get this ...
0
votes
1answer
176 views

AspectJ IntelliJ - No matching factory method found: factory method 'aspectOf()'

So I have a spring / maven project which i've recently moved over from eclipse to intellij. Mainly this was due to Juno giving me performance grief. Anyway when I make in intellij It seems that the ...
1
vote
1answer
94 views

Why is my AspectJ Advice being executed twice?

My Advice is executing correctly and preforming the correct action except that is executing twice. I'd like for it to execute only once. The method that is supposed to trigger the advice is only ...
0
votes
1answer
121 views

Spring AOP Parameterized Annotation

I am new to spring AOP and struggling to achieve the following. I want to define an annotation @RequirePermission which accepts a parameter String or enum and based on that string/enum I will do some ...
0
votes
1answer
241 views

Implement logging with AOP and Log4J

I try to add automatic logging using aspects to my web app which is developed with Java EE and Spring (core + mvc + security...). Dependencies are managed by maven and the application server is a ...
1
vote
2answers
65 views

Self-invocation shouldn't be adviced but it does

I'm getting a weird behavior by Spring AOP AspectJ: self-invocation shouldn't be adviced, but in my application it does. From Spring documentation: However, once the call has finally reached the ...
1
vote
0answers
138 views

Spring - Injecting resources in per-scoped (perthis - pertarget) aspect

In my Spring web application, I'm trying to inject a resource in a perthis-scoped AspectJ aspect. Injection works well using a singleton aspect, but fails using a perthis scoped one. I tried using ...
1
vote
1answer
194 views

aspectj get object to within pointcut

I have the following class: package Test; public class A { private B b = new B() { @Override public boolean someFunc() {return false;} } } What is the AspectJ pointcut to ...
0
votes
0answers
94 views

Spring Aspectj instantiation models in webapp

I've a Spring web application and I'm trying to add some aspect to my service objects. The goal is to maintain aspect's state only through a single request scope, and to obtain a reference to aspect ...
0
votes
1answer
148 views

@Around advice not work spring aspectj

i'm new to the aop programming and i have a big issue with @Around advice. I've a maven project with - aspectjrt and aspectjweaver 1.7.1 - spring 3.2.0 According with official guide ...

1 2 3 4 5 7