我(当然)尝试使用许多我不太了解的结构来维护项目。在试图找出Spring中的AOP使用过程中,我遇到了带有以下注释的方法:
@Around(value =“@ annotation(annotation)”)
所以@Around意味着我们在AOP中执行方法切入点的'around'版本,我明白了。我不知道其他部分是什么意思。 Spring文档提供了以下内容:
@annotation - 限制匹配到连接点的主题 连接点(在Spring AOP中执行的方法)具有给定的 注释
我不知道这意味着什么 - “在Spring AOP中执行的方法”听起来像建议的方法,但我不知道我(或Spring)如何找出建议的方法。听起来它是具有“给定注释”的方法,但如果是这样,那么给出了什么注释?
此注释建议使用哪些方法?还有什么意思呢?
答案 0 :(得分:14)
如果您有以下Spring Bean:
@Component
public class foo {
@com.pkg.Bar
void fooMe() {
}
}
然后是以下建议:
@Around("@annotation(com.pkg.Bar)")
将调用fooMe
周围的拦截器(或使用@Bar
注释的任何其他Spring bean方法)
@Transactional
注释就是一个很好的例子
答案 1 :(得分:1)
您将拥有一个名为annotation
的参数,其类型相应。它被称为绑定注释,请参阅Spring AOP documentation:
以下示例显示了如何匹配执行 用@Auditable注释注释的方法,并提取审计 代码。
首先定义
@Auditable
注释:@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Auditable { AuditCode value(); }然后是与
@Auditable
方法的执行相匹配的建议:@Before("com.xyz.lib.Pointcuts.anyPublicMethod() && @annotation(auditable)") public void audit(Auditable auditable) { AuditCode code = auditable.value(); // ... }
答案 2 :(得分:0)
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class TimeLoggingAspect {
@Before("timeLoggingAspect()")
public void logBefore(JoinPoint joinPoint){
System.out.println("Method Name="+joinPoint.getSignature().getName());
System.out.println("Logging Before...");
}
/*
// Other way for AOP implemetation
@Pointcut("execution(public void userService())")
public void timeLoggingAspect(){
}
@After("timeLoggingAspect()")
public void logAfter() throws Exception{
System.out.println("Logging After...");
throw new Exception("Error after Logging");
}
@AfterThrowing(pointcut="timeLoggingAspect()",throwing="exception")
public void logAfterThrowingException(Exception exception){
System.out.println(exception.getLocalizedMessage());
}*/
}
/** Config class **/
import org.springframework.stereotype.Component;
import com.annotation.EnableMethodVisit;
@Component
@EnableMethodVisit
public class UserService {
public void userService(){
System.out.println("user service calling......");
}
}
/** Custom Annotation are used **/
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EnableMethodVisit {
}
/** UserService **/
import org.springframework.stereotype.Component;
import com.annotation.EnableMethodVisit;
@Component
@EnableMethodVisit
public class UserService {
public void userService(){
System.out.println("user service calling......");
}
}
/** AOP Test **/
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.aop.classes.UserService;
public class SpringAopTest {
public static void main(String[] args) {
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
ctx.register(AspectConfig.class);
ctx.refresh();
UserService userService = ctx.getBean(UserService.class);
userService.userService();;
}
}
答案 3 :(得分:0)
如果您有以下Spring Bean:
public @interface Bar {
String value() default "default value";
}
和以下@interface:
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class BarAop {
@Around(value = "@annotation(bar)") // This 'bar' is one of the parameters of method around(point, bar)
public Object around(ProceedingJoinPoint point, Bar bar) throws Throwable {
String value = bar.value();
System.out.println(value); // will print "default value"
// execute target method
Object object = point.proceed();
System.out.println("return : " + object);
return object;
}
}
您可以使用以下建议:
{{1}}
答案 4 :(得分:0)
补充现有正确答案的小技巧。
要使@Aspect
注释生效,纯Spring需要@EnableAspectJAutoProxy
类上的@Configuration
。或者,当使用XML时,可以选择<aop:aspectj-autoproxy>
。 Spring Boot不需要它,因为它具有自动配置功能。</ p>