我正在开发一个使用Spring框架(4.0.5)和AspectJ进行AOP日志记录的java(JDK1.6)应用程序。
我的Aspect类工作正常,但我无法为构造函数对象创建切入点。
这是我的目标:
@Controller
public class ApplicationController {
public ApplicationController(String myString, MyObject myObject) {
...
}
...
..
.
}
这是我的Aspect类:
@Aspect
@Component
public class CommonLogAspect implements ILogAspect {
Logger log = Logger.getLogger(CommonLogAspect.class);
// @Before("execution(my.package.Class.new(..)))
@Before("execution(* *.new(..))")
public void constructorAnnotatedWithInject() {
log.info("CONSTRUCTOR");
}
}
如何为构造函数对象创建切入点?
由于
答案 0 :(得分:11)
Sotirios Delimanolis 是正确的,因为Spring AOP不支持构造函数拦截,你需要完整的AspectJ。 Spring手册第9.8 Using AspectJ with Spring applications章描述了如何在LTW(加载时编织)中使用它。
此外,您的切入点存在问题
@Before("execution(* *.new(..))")
构造函数没有像AspectJ语法中的方法那样的返回类型,因此您需要删除前导*
:
@Before("execution(*.new(..))")