web-dev-qa-db-ja.com

Spring AOPは@EnableAspectJAutoProxyなしで動作しますか?

Spring(現在はAOPフレームワーク)を学んでいます。私が読んだすべてのソースでは、AOPを有効にするには@EnableAspectJAutoProxy注釈(またはそのXMLの対応)私のコードは注釈がコメントアウトされた状態で動作するようです。 LombokまたはSpring Boot(v。1.5.9.RELEASE、Spring v。4.3.13.RELEASEに依存)を使用しているためですか?

最小限の例を次に示します。

build.gradle

buildscript {
    ext {
        springBootVersion = '1.5.9.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'Java'
apply plugin: 'org.springframework.boot'

group = 'lukeg'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}


dependencies {
    compile('org.springframework.boot:spring-boot-starter')
    compileOnly('org.projectlombok:lombok')
    compile("org.aspectj:aspectjweaver:1.8.11")
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

ApplicationConfiguration.Java(AOP注釈はコメント化されていることに注意してください)

package lukeg;

import org.springframework.context.annotation.*;

@Configuration
@ComponentScan
//@EnableAspectJAutoProxy
public class ApplicationConfiguration {
    @Bean
    TestComponent testComponent() {
        return new TestComponent();
    }
}

LearnApplication.Java

package lukeg;

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

@SpringBootApplication
public class LearnApplication implements CommandLineRunner {

    public static void main(String[] args) {
        SpringApplication.run(LearnApplication.class, args);
    }

    @Override
    public void run(String... args) throws Exception {
        ApplicationContext context = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);
        TestComponent testComponent = context.getBean(TestComponent.class);
        System.out.println(""+testComponent);
    }
}

LoggerHogger.Java

package lukeg;

import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Component
@Aspect
public class LoggerHogger {

    @Pointcut("execution(* lukeg*.*.toString(..))")
    public void logToString() {}

    @Before("logToString()")
    public void beforeToString () {
        System.out.println("Before toString");
    }
}

TestComponent.Java

package lukeg;

import lombok.Data;


@Data
public class TestComponent {
}
8
lukeg

@SpringBootApplication注釈には、@EnableAutoConfiguration注釈が含まれています。この自動構成は、Spring Bootの魅力の1つであり、構成を簡単にします。自動構成では、@Conditionalタイプの注釈(@ConditionalOnClass@ConditionalOnPropertyなど)を使用してクラスパスをスキャンし、AOPなどの「モジュール」のロードをトリガーするキークラスを探します。

以下に例を示します AopAutoConfiguration.Java

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.reflect.Advice;
import org.aspectj.weaver.AnnotatedElement;

@Configuration
@ConditionalOnClass({ EnableAspectJAutoProxy.class, Aspect.class, Advice.class,
    AnnotatedElement.class })
@ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
public class AopAutoConfiguration {

  @Configuration
  @EnableAspectJAutoProxy(proxyTargetClass = false)
  @ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false", matchIfMissing = false)
  public static class JdkDynamicAutoProxyConfiguration {

  }

  @Configuration
  @EnableAspectJAutoProxy(proxyTargetClass = true)
  @ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true", matchIfMissing = true)
  public static class CglibAutoProxyConfiguration {

  }

}

ご覧のとおり、上記のaopクラスの1つをクラスパス(またはプロパティ)に追加すると、Springはそれを検出し、メインクラスに@EnableAspectJAutoProxyアノテーションがあるかのように効果的に動作します。

プロジェクトには、@ Aspectを持つLoggerHoggerファイルがあります。

11
Ian Mc