我正在尝试从此页面设置 spring AOP 示例:
http://www.javabeat.net/articles/51-introduction-to-springs-aspect-orientation-programminga-4.html
我使用 Eclipse Indigo 作为我的开发环境。
在这些线上:
public class LogAfterThrowsAdvice implements ThrowsAdvice{
public class LogAfterReturningAdvice implements AfterReturningAdvice{
public class LogBeforeCallAdvice implements MethodBeforeAdvice {
我收到消息:
org.aopalliance.aop.Advice 类型无法解析。它是从所需的 .class 文件中间接引用的
我从这里下载了 org.aopalliance 包:
http://sourceforge.net/projects/aopalliance/
jar 文件是 aopalliance-alpha1.jar。它不包含路径 org.aopalliance.aop。我想知道我是否应该使用不同的 aopalliance jar 文件?