- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了自定义注释:
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Condition {
String value();
}
我想用这个注解来判断是否运行advice,我的尝试:
@Condition("some.config")
@Around("execution(public * someMethod())")
Object doSomething(ProceedingJoinPoint joinPoint) throws Throwable {
// some logic here
}
@Around("@annotation(condition)")
Object checkCondition(ProceedingJoinPoint joinPoint, Condition condition) throws Throwable {
String property = (String) configuration.getProperty(condition.value());
if (Boolean.valueOf(property)){
return joinPoint.proceed();
} else {
return null;
}
}
当我在其他一些方法上使用@Condition
时,它会起作用,即应用checkCondition
,然后根据配置值执行或不执行该方法。对于建议doSomething
,它并没有得到应用。
最佳答案
您说您的方面适用于其他组件,但不适用于方面本身。从这个声明中我了解到
@Component
注释并通过组件扫描检测或通过 XML 配置手动连接)并且(2) 中是问题的根源。根据Spring manual方面本身不属于方面目标本身:
Advising aspects with other aspects?
In Spring AOP, it is not possible to have aspects themselves be the target of advice from other aspects. The @Aspect annotation on a class marks it as an aspect, and hence excludes it from auto-proxying.
所以M。 Prokhorov 在说方面不是(或不能是)Spring 组件时有点错误,但他是对的,因为从设计上来说,您无法 self 建议某个方面或建议其他方面。他关于它可能与 AspectJ 一起工作的假设也是正确的。它确实与AspectJ一起工作,所以如果你需要它,你可以配置Spring使用AspectJ via LTW对于这种情况,而不是 Spring AOP。
关于java - Spring AOP : Advice on annotation used over another advice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48806322/
我已经创建了自定义注释: @Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE}) @Retention(Retention
例如我有如下界面 public interface Converter { public O convert(I input); } 实现该接口(interface)的抽象类 public a
我有两个方面,每个方面都修改方法参数。当两个方面都应用于同一方法时,我希望这些方面的执行被链接起来,并且我希望在第一个方面修改的参数可以通过 joinPoint.getArgs(); 但是,似乎每个方
对不起,这不是一个具体的问题。因为我是 Jsprit 的新手,所以我需要一些关于如何开始解决问题的概念性帮助。 我的例子: 我开始时只有一辆车带有开始和结束位置。有多个优先取货位置,只有一个仓库位置用
尝试设计简单的方面,当执行任何公共(public)方法时,将打印单词“logg”到控制台。 方面: @Aspect public class LoggingAspect { @Pointcut
我知道Spring必须实现一个专门用于事务的“建议”,那么实现tx:advice的代码在哪里?标签? 我也会感谢 标签的实现,如果你能指出在 spring jar 中的位置。 最佳答案 Spring
我想看看是否已经有类似的问题,但找不到,所以就在这里。 我们有一个遗留代码,其中单个 BO 使用反射对许多 DAO 进行方法调用。为了简单起见,我修改了代码。 @Transactional class
我在部署新方面时遇到此异常: @Aspect public class MyAspect { @Before("@annotation(PreAuthorizeAccess)") pu
我想从单个表中获取信息,其中我将显示每条记录的最新交易,同时显示上一个交易的记录。 表: |id | account_no | date1 | price | |1 | 101
我们正在寻找具有以下功能的 CMS。 LDAP 认证 浏览器内的所见即所得编辑器 可以声明架构,如教师、学生、类(class)、房间、 session 、 session 记录、项目、论文、报告等,以
我的 Spring AOP 程序未按预期运行。我在下面创建了简单的AOP注释程序,但输出不是我想象的。 节目: Beans.xml 学生.java 包
在我的例子中,我使用了以下建议: @Around(value = "@annotation(MyAnnotation) && args(MyArgs)") 一旦将 MyAnnotation 添加
我在一个小项目上运行 HLint,它建议我使用 &&&。 例子 : >>> cat st.hs f = (+) 10 g = (+) 1 main = print $ (\x -> (f x, g x
Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。
我正在使用 RethinkDB 构建一个应用程序,我即将切换到使用 changefeeds。但我面临着一个架构选择,我想得到一些建议。 我的应用程序当前在用户登录时从几个表中加载所有用户数据(将所有数
我有两个支持grpc通讯的后端。 我为每个人创建了一个具有这个build.gradle的简单android项目 apply plugin: 'com.android.library' apply pl
我使用以下组件依赖关系树制作了一个简单的应用程序: Service1 injects Service2(via constructor) Service2 injects SomeContext(vi
我正在尝试使用moSKito监控工具遵循此step-by-step guide 。我已将这些字符串添加到 pom.xml 文件中: net.anotheria moskito-core
假设我们有以下数据框: import pandas as pd df = pd.read_csv('subjects.csv') Col A, Interest, Col S
我正在测试 Spring AOP 框架并有以下问题。 我有以下代码: package danny.test.controllers; @Controller public class MyContro
我是一名优秀的程序员,十分优秀!