1

我正在使用 spring-security 项目来尝试 OAuth2 服务器实现。我已经从https://github.com/SpringSource/spring-security-oauth克隆了 git 项目。

该示例按记录工作。现在要跟踪流程,我想使用 AOP 将函数进入/退出添加到现有代码中。为此,我做了以下更改:

  • 添加了一个类“Watcher.java”(下面的代码)
  • 在 pom.xml 中添加了 AspectJ 依赖项

    <dependency>
        <groupId>aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
        <version>1.5.3</version>
    </dependency>
    <dependency>
        <groupId>aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>1.5.3</version>
    </dependency>
    
  • 项目构建和运行

  • 但是看不到每个函数的 AspectJ 标记

是否可以在不更改大部分原始代码的情况下使用此方法添加函数进入/退出日志记录?

观察者.java:

package org.springframework.security.oauth.examples.sparklr;

import java.util.Arrays;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

@Aspect
public class Watcher {

    @Pointcut("execution(* *(..))")
    public void watch() {
    }

    @Before("watch()")
    public void preWatch(JoinPoint joinPoint) {

        if (joinPoint.getArgs().length > 0) {
            String[] args = new String[joinPoint.getArgs().length];

            System.arraycopy(joinPoint.getArgs(), 0, args, 0,
            joinPoint.getArgs().length);

            System.out.println("-> " + joinPoint.toShortString()
                    + Arrays.toString(joinPoint.getArgs()));
        } else {
            System.out.println("-> " + joinPoint.toShortString());
        }

        System.out.println("Args: " + joinPoint.getArgs().length);
    }

    @AfterReturning("watch()")
    public void postWatch(JoinPoint joinPoint) {
        System.out.println("<- " + joinPoint.toShortString());
    }
}
4

1 回答 1

0

您应该在 spring 配置中启用 AspectJ(自动扫描您的注释)

<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/beans/spring-beans-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:component-scan base-package="..."/>
    <aop:aspectj-autoproxy />
    ...
</beans>

也许你也会spring-aop对你的项目产生依赖。

于 2013-05-31T10:59:13.573 回答