- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章详解Spring AOP自定义可重复注解没有生效问题由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
工作中遇到这样的场景:某个方法需要在不同的业务场景下执行特定的逻辑,该方法已经上生产,不想改变原来的代码,因此决定用AOP做个切面执行逻辑.
以下为核心代码:
定义注解:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@Target
({ElementType.TYPE, ElementType.METHOD})
@Retention
(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Repeatable
(value = StartTaskRuns.
class
)
public
@interface
StartTaskRun {
int
businessType()
default
0
;
}
@Target
({ElementType.TYPE, ElementType.METHOD})
@Retention
(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public
@interface
StartTaskRuns {
StartTaskRun[] value();
}
|
定义切面 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@Aspect
@Component
public
class
StartTaskRunAspect {
@AfterReturning
(pointcut =
"@annotation(com.freedom.code.annotation.StartTaskRun)"
, returning =
"retValue"
)
public
void
startTask(JoinPoint joinPoint, Object retValue)
throws
Exception {
Object[] args = joinPoint.getArgs();
Signature signature = joinPoint.getSignature();
MethodSignature methodSignature = (MethodSignature) signature;
Method method = methodSignature.getMethod();
StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.
class
);
for
(StartTaskRun annotation : annotations) {
System.out.println(annotation.businessType());
}
}
}
|
业务代码加注解 。
1
2
3
4
5
6
7
8
|
@StartTaskRun
(businessType =
5
)
@StartTaskRun
(businessType =
6
)
@Override
@Transactional
(rollbackFor = Exception.
class
)
public
String doCsmsStrategy(Long id) {
// 业务逻辑
return
userDO.getId().toString();
}
|
debug的时候发现,切面的代码没有执行.
1
2
3
4
5
6
7
8
9
10
11
|
@AfterReturning
(pointcut =
"execution(* com.freedom.code.service.UserServiceImpl.doCsmsStrategy(..))"
, returning =
"retValue"
)
public
void
startTask(JoinPoint joinPoint, Object retValue)
throws
Exception {
Object[] args = joinPoint.getArgs();
Signature signature = joinPoint.getSignature();
MethodSignature methodSignature = (MethodSignature) signature;
Method method = methodSignature.getMethod();
StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.
class
);
for
(StartTaskRun annotation : annotations) {
System.out.println(annotation.businessType());
}
}
|
还是不行,但是我的工程中其他地方也是类似的写法却没有问题啊。看起来不像是AOP配置不对的问题 。
打断点吧,如下:
是使用cglib生成的代理对象,没有问题啊,到底问题在哪里。没办法,面向百度编程吧,还真找到问题解决办法。如下帖子:http://www.zzvips.com/article/209596.html 。
对于可重复注解,如果方法上用多个可重复注解,AOP拦截不到。需要用它的包装类型注解做切点,改成以下代码就可以了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@Aspect
@Component
public
class
StartTaskRunAspect {
@AfterReturning
(pointcut =
"@annotation(com.freedom.code.annotation.StartTaskRun) || @annotation(com.freedom.code.annotation.StartTaskRuns)"
, returning =
"retValue"
)
public
void
startTask(JoinPoint joinPoint, Object retValue)
throws
Exception {
Object[] args = joinPoint.getArgs();
Signature signature = joinPoint.getSignature();
MethodSignature methodSignature = (MethodSignature) signature;
Method method = methodSignature.getMethod();
StartTaskRun[] annotations = method.getAnnotationsByType(StartTaskRun.
class
);
for
(StartTaskRun annotation : annotations) {
System.out.println(annotation.businessType());
}
}
}
|
到此这篇关于详解Spring AOP自定义可重复注解没有生效问题的文章就介绍到这了,更多相关Spring AOP注解没有生效内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/qq_39530821/article/details/119900335 。
最后此篇关于详解Spring AOP自定义可重复注解没有生效问题的文章就讲到这里了,如果你想了解更多关于详解Spring AOP自定义可重复注解没有生效问题的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
注解@CrossOrigin 出于安全原因,浏览器禁止Ajax调用驻留在当前原点之外的资源。例如,当你在一个标签中检查你的银行账户时,你可以在另一个选项卡上拥有EVILL网站。来自EVILL的脚本
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章深入理解Java高级特性——注解由作者收集整理,如果你对这篇文章有兴趣,
概述 在这个快速教程中,我们将探索 Spring 的 @RequestParam 注解。 简单地说,我们可以使用 @RequestParam 从请求中提取查询参数、表单参数甚至文件。我们将讨论如何使用
我有一个关于 Spring @Async 注释的问题。我有一个 Controller 自动连接了一个服务(GnInsuranceDetailsService) @RequestMapping(va
我在使用注释来调用注释所属的方法时遇到了一些麻烦......我将举一个例子: class MyEventHandlers { @handler(id=“1”) public doSom
我是.Net程序员,但是这次我正在从事Java项目,并且遇到了一些困难。这个 java 项目不是我的,它是由其他开发人员开发的,并且使用 Hibernate。 当我运行 Ant 构建器时,我收到此错误
我在 Grails 文档(第 9 章:测试)中读到过这个注解。但是我不明白这是什么... 问题是我需要模拟 GORM 的动态方法,有一种方法可以自动模拟它们,而不必编写我需要的所有方法吗? 最佳答案
这个问题在这里已经有了答案: How to get annotation class name, attribute values using reflection (2 个答案) 关闭 5 年前。
如何了解 Java EE 6 JMS 注释规范支持的所有有效属性集@ActivationConfigProperty Java EE 6 Documentation for @ActivationCo
我认为这是不可能的,但也许我错了。所以我问你,如果可能的话。 ;-) 如果我定义了一个注释,它只接受类引用,它扩展了一些可能的接口(interface)或类: Class serviceIFProv
我正在尝试使用 javax.validation 验证一些 DTO,但似乎注释 @NotEmpty 没有检查参数是否为 null。 这是我的类(class): Person.class public
我是 hibernate 新手,我正在尝试学习它,但在尝试使一对多关系正常工作时遇到了问题。我尝试了几个例子,但似乎没有一个起作用。 有人可以看一下下面的代码并告诉我哪里出了问题吗?我尝试了很多不同的
这个问题已经有答案了: Why doesn't Java offer operator overloading? (17 个回答) 已关闭 9 年前。 每个人都知道 Java 中的简单算术如何用于基元
有人知道如何用 Python 处理这种 XML 注释,这是我第一次看到。 <?link id="752760" resource-uuid="UUID-9f0575a3-1847-1cde-fd
我遇到了这个link这解释了如何继承 bean。假设此示例中的 HelloWorld 类使用 @Component 注释作为 bean 公开,如何创建另一个继承此 bean 的 bean?我可以使用
谁能告诉我这段代码是否: public class OvTester { @Override public int hashCode() { return toStri
我有一个实体,它有一个非键列,我已将其设置为在我的数据库中自动生成。 我不能使用 @GeneratedValue,因为据我所知,它仅适用于关键字段。 在这种情况下,如何指示非键列是自动生成的? 最佳答
所以可能像很多人一样,我通常会临时注释掉代码,主要是为了调试目的。我目前放了类似 **DEBUG** 或任何容易搜索的内容,但我认为让编译器在发现临时注释掉的代码时输出警告(甚至错误)可能很有用。我想
此组件解决的问题是: 「谁」在「什么时间」对「什么」做了「什么事」 本组件目前针对 Spring-boot 做了 Autoconfig,如果是 SpringMVC,也可自己在 xml 初始化 b
配置全局乱码过滤器 参数绑定注解@RequestParam 注解@RequestParam的参数使用说明 获得Restful风格的参数 自定义类型转换器 自定义转换器的开发步骤: 获得Servlet相
我是一名优秀的程序员,十分优秀!