
top.gotoeasy.EnableAop Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gotoeasy-aop Show documentation
Show all versions of gotoeasy-aop Show documentation
基于JavaCompiler的继承方式AOP实现,在性能优良的基础上,提供更多的简易性,2.x.x版本集成使用Spring容器
The newest version!
package top.gotoeasy;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Import;
import org.springframework.stereotype.Component;
import top.gotoeasy.framework.spring.aop.configuration.AopConfiguration;
/**
* 开启AOP功能
*
* @since 2018/01
* @author 青松
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
@Component
@Import(AopConfiguration.class)
public @interface EnableAop {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy