我试图通过以下设置拦截Spring中的类
拦截
@Aspect
@Component
public class MyInterceptor {
@Around("execution(* com.example.services..*(..))")
public Object intercept(ProceedingJoinPoint pjp) throws Throwable {
if (pjp.getTarget() != null && pjp.getTarget().getClass().getAnnotation(MyAnnotation.class) != null) {
System.out.println("Yes annotation present");
} else {
System.out.println("Annotation not present");
}
return = pjp.proceed();
}
}
拦截和类如下
@Component
@MyAnnotation
public class MyAlert implements IAlert {
}
除非我做出以下更改,否则每件事情都会正常工作
@Configuration
@PropertySource(value = { "file:${catalina.home}/conf/my.properties" })
@Component
@MyAnnotation
public class MyAlert implements IAlert {
@Autowired
private Environment environment;
}
我想读取位于tomcat7的conf文件夹中的属性,在进行这些更改后,我的拦截器无法读取我的自定义注释@MyAnnotation
。它说(用拦截器写的自定义消息)
注释不存在
这里是自定义注释
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}
我真的希望该类被拦截,并且如果注释,必须在类上检测注释。我还想在截取的类中读取conf文件夹中的属性。
答案 0 :(得分:0)
您对注释的检查失败,因为您正在检查动态代理的类型而不是实际注释的类型。你可以像这样解决它:
pjp.getSignature().getDeclaringType().getAnnotation(RestController.class) != null