Example usage for org.springframework.context.annotation AdviceMode ASPECTJ

List of usage examples for org.springframework.context.annotation AdviceMode ASPECTJ

Introduction

In this page you can find the example usage for org.springframework.context.annotation AdviceMode ASPECTJ.

Prototype

AdviceMode ASPECTJ

To view the source code for org.springframework.context.annotation AdviceMode ASPECTJ.

Click Source Link

Document

AspectJ weaving-based advice.

Usage

From source file:org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration.java

private boolean isAspectJ() {
    return enableMethodSecurity().getEnum("mode") == AdviceMode.ASPECTJ;
}