我正在使用 Spring 和 MongoDB java 驱动程序,我试图拦截对 mongo DBCursor 对象的所有调用,以在查询被执行之前查看它们。
我一直在尝试使用外部 jar 的 aspject-maven-plugin 来做到这一点。
http://mojo.codehaus.org/aspectj-maven-plugin/weaveJars.html
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<verbose>true</verbose>
<privateScope>true</privateScope>
<complianceLevel>1.5</complianceLevel>
<weaveDependencies>
<weaveDependency>
<groupId>org.mongodb</groupId>
<artifactId>>mongo-java-driver</artifactId>
</weaveDependency>
</weaveDependencies>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
我已经在使用 Spring AOP 并在 java 代码中配置了 aspecj
@EnableAspectJAutoProxy
然后,我将以下内容添加到使用 @Aspect 注释的类中。(其他拦截在我项目源代码中的自定义类上运行良好)
@Pointcut("execution(* com.mongodb.DBCursor..*.*(..))")
public void interceptAndLog(ProceedingJoinPoint invocation){
_loggingService.Info("intercepted DBCursor");
}
我也尝试用@Before 替换@Pointcut,但都不起作用。
提前致谢,
罗南