有人可以指出我做错了什么吗?如何让我的Aspect运行?
我已经按照一些例子编写了这段代码:
@Aspect
public class MethodLogger {
private Logger log = Logger.getLogger(getClass().getName());
@Pointcut("execution(* setHeight(..))")
public void log(JoinPoint point) {
log.info(point.getSignature().getName() + " called...");
}
}
我的简单测试课程:
public class ChairImpl implements Chair {
int height;
public ChairImpl(){}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
}
My Spring xml config:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"
default-destroy-method="destroy"
default-init-method="afterPropertiesSet"
default-autowire="byName"
>
<aop:aspectj-autoproxy>
<aop:include name="MethodLogger"/>
</aop:aspectj-autoproxy>
<bean id="logger1" class="lab.MethodLogger"/>
<bean id="chair1"
class="lab.test.ChairImpl"
>
<property name="height" value="10"/>
</bean>
</beans>
我的主要方法:
public class Main {
public static void main(String[] args){
ApplicationContext context = new ClassPathXmlApplicationContext("spec.xml");
((AbstractApplicationContext) context).close();
}
}
所以在运行我的项目之前,Eclipse给了我这个错误(它为void
方法标记了红色log
字词:
Pointcuts without an if() expression should have an empty method body
当我运行时,我的程序运行没有错误,因为看起来log
方法从未运行过。那么我怎么能修复它以便它运行并输出日志?我只是尝试从该方法打印test text
,但它永远不会,因此它意味着它永远不会运行。我在这里缺少什么?
在文档中,它只会写出模糊的例子,如:
@Pointcut("execution(* transfer(..))")// the pointcut expression
private void anyOldTransfer() {}// the pointcut signature
但我发现很难理解如何实际使用它来查看结果。
答案 0 :(得分:1)
您可以通过以下方式尝试匿名切入点:
@Before("execution(* setHeight(..))")
public void log(JoinPoint point) {
log.info(point.getSignature().getName() + " called...");
}
或给你的切入点一个名字并以这种方式使用它:
@Pointcut("execution(* setHeight(..))")
public void setters() {}
@Before("setters()")
public void log(JoinPoint point) {
...
}