Aspectj和spring安全方面 - 建议执行的顺序

时间:2014-09-05 14:39:54

标签: spring-security aspectj spring-aop aspectj-maven-plugin

我正在使用spring-security 3.2.4.RELEASE,spring-security-aspects 3.2.4.RELEASE,AspectJ maven插件版本1.6,Java 7.

我使用的是AspectJ的编织而不是SpringAOP,因此我的aspectj maven插件看起来像这样:

           <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>                     
                    <goals>
                        <goal>compile</goal>
                        <goal>test-compile</goal>
                    </goals>
                    </execution>
                </executions>
                <configuration>
                    <Xlint>ignore</Xlint>
                    <showWeaveInfo>true</showWeaveInfo>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <complianceLevel>${org.aspectj-version}</complianceLevel>
                    <aspectLibraries>
                        <aspectLibrary>
                            <groupId>org.springframework.security</groupId>
                            <artifactId>spring-security-aspects</artifactId>
                        </aspectLibrary>
                    </aspectLibraries>
          </plugin>

我有另一个方面看起来像这样:

package com.mycompany.fw.app.config;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclarePrecedence;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.core.ParameterNameDiscoverer;
import org.springframework.security.core.parameters.DefaultSecurityParameterNameDiscoverer;

import com.mycompany.fw.security.Integration;

@Aspect
@DeclarePrecedence("IntegrationAspects*,*")
public class IntegrationAspects {

    ParameterNameDiscoverer parameterNameDiscoverer = new DefaultSecurityParameterNameDiscoverer();

    @Pointcut("(execution(* com.mycompany..*(..))) && @annotation(integrate) ")
    public void integratePointCut(Integration integrate) {

    }

    /**
     * TODO: cache
     * 
     * @param jp
     * @param integrate
     * @throws Throwable
     */
    @Around("integratePointCut(integrate)")
    public Object integrate(final ProceedingJoinPoint pjp, Integration integrate) throws Throwable {
        Object res = pjp.proceed();
        return res;
    }

}

我需要的是将上述(集成方面)放在第一个之前的任何其他方面(包括Spring的安全方面) 正如您所看到的那样,我尝试使用@DeclarePrecedence(我也尝试使用declare precedence : IntegrationAspects*,*以及.aj文件),但遗憾的是,没有成功。

有人可以指导我如何定义方面调用顺序吗?

1 个答案:

答案 0 :(得分:4)

问题在于,您不要在IntegrationAspects中使用普通方面名称@DeclarePrecedence,而应使用小丑角色*。在这种情况下,您需要使用完全限定的类名称或创建相同的类型。

不起作用:

@DeclarePrecedence("IntegrationAspects*, *")

<强>使用:

@DeclarePrecedence("IntegrationAspects, *")
@DeclarePrecedence("com.mycompany.fw.security.Integration.IntegrationAspects, *")
@DeclarePrecedence("com.mycompany.fw.security.Integration.IntegrationAspects*, *")
@DeclarePrecedence("*..IntegrationAspects*, *")

等等。顺便说一下,在类名中使用大写包名和复数看起来真的很难看。

我是AspectJ专家,而不是Spring用户,所以我不能告诉你,声明优先级是否也会影响Spring提供的方面。它可能还取决于它们是使用原生AspectJ还是Spring-AOP(基于代理的&#34; AOP lite&#34;)实现的。