我希望能够在加载时使用 Spring 和 AspectJ 将一个方面编织到现有的 tomcat webapp。我正在使用 AspectJ,因为我需要执行构造函数切入点。
我有两个测试场景,一个是我的方面是一个简单的 servlet 应用程序的一部分——该应用程序包含方面的源代码,我使用 MVN 和 aspectJ 插件来编译 WAR 和 Aspect。这方面按预期工作。第二种情况是我将方面分离到它自己的项目中,并使用(我尝试过 AJC 和 AJDT)将其编译成 JAR 文件,并将 jar 文件包含在我的 war/WEB-INF/lib 文件夹中。加载war文件上下文时似乎正在拾取Aspect,但未应用于war文件中的任何对象。
这是方面代码:
@SuppressWarnings("unused")
public aspect ProjectMonitor{
pointcut constr() : call(com.avaya..*.new(..)) ;
Object around() : constr(){
System.out.println("In Constructor for "
+ thisJoinPointStaticPart.getSignature());
Object ret = proceed();
return ret;
}
pointcut publicOperation() : execution(public * *.*(..));
Object around() : publicOperation() {
long start = System.nanoTime();
Object ret = proceed();
long end = System.nanoTime();
System.out.println(thisJoinPointStaticPart.getSignature() + " took "
+ (end - start) + " nanoseconds");
return ret;
}
pointcut callConst() : call(public *..*SCESession.new(..));
public Object callConst(ProceedingJoinPoint jp) throws Throwable {
System.out.println("In Project Monitor!!!");
return jp.proceed();
}
}
我在 web app/META-INF 文件夹中包含了一个 aop.xml 文件:
<aspectj>
<aspects>
<aspect name="com.ddvc.ivr.ProjectMonitor" />
</aspects>
</aspectj>
我的 Spring Context 文件如下所示:
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:load-time-weaver aspectj-weaving="on" />
<context:spring-configured />
<context:component-scan base-package="com.avaya.sce.runtimecommon"/>
<context:annotation-config />
<aop:aspectj-autoproxy />
<!-- Aspect Mapping -->
<bean id="monitor" class="com.ddvc.ivr.ProjectMonitor" factory-method="aspectOf"/>
</beans>
很简单,对吧?我什至有一个 -javaagent 集:
export JAVA_OPTS="-Xmx1024M -Xms1024M -server -javaagent:/software/apache-tomcat-6.0.36/lib/spring-instrument-3.2.1.RELEASE.jar"
为什么当源文件与 WAR 文件一起编译时会起作用,但是当它作为 JAR 文件包含在类路径中时,它根本不起作用。
重新加载 WAR 上下文文件时,我在 tomcat 日志文件中多次看到以下内容:
11:27:51,285 调试 GenericTypeResolver:151 - 使用具体方法参数 [{ }]。
任何/所有回复表示赞赏!在此先感谢,格里夫