Top "Spring-aop" questions

Spring AOP is the Spring Framework's version of AOP, implemented in pure Java and using the @AspectJ annotations from the AspectJ project.

Spring - AspectJ pointcut for constructor object with annotation

I'm developing a java (JDK1.6) application with Spring framework(4.0.5) and AspectJ for AOP Logging. My Aspect classes work fine but …

java spring aop aspectj spring-aop
Mixing JDK and CGLIB proxies within Spring

I have an application running with Spring, and I'm using AOP in some places. Since I want to use the @…

spring aop spring-aop cglib
Pointcut for annotated methods or methods in annotated classes

I need a pointcut for methods in classes annotated with @X or methods annotated with @X. I also need the …

java spring aop spring-aop
Access a business method's local variable in a method which is in an ASPECT

I want to access a local variable from a method in a business class, in a method which is in …

aspectj spring-aop
When using spring aop:around, how can I get return type of the pointcut method?

I have a requirement now, that is when using mybatis(especially those batch execute sql), check parameter first , if the …

java spring spring-aop
Spring 4 AOP @Aspect isn't triggering for @RestController

I have created an Aspect which performs a basic id comparison to ensure that a user belongs to a the …

spring-mvc spring-aop spring-4 spring-restcontroller
How-to configure Spring Social via XML

I spend a few hours trying to get Twitter integration to work with Spring Social using the XML configuration approach. …

spring aop spring-aop spring-social xml-configuration
CGLIB with spring throws IllegalAccessError

I have a spring app with aop enabled using cglib proxies for logging: <?xml version="1.0" encoding="UTF-8"?> <…

proxy weblogic spring-aop oc4j cglib
Custom Spring AOP Around + @Transactional

I have a custom Around implemented to match on a custom Annotation. I want the custom around to execute WITHIN …

java spring mybatis spring-aop