gpt4 book ai didi

Java - Spring AOP - 使用之前的建议停止执行方法?

转载 作者:行者123 更新时间:2023-12-01 17:17:10 25 4
gpt4 key购买 nike

如何在 Spring AOP 中使用 before 建议作为安全措施。

例如,我之前有这个建议(带有伪代码):

@Before("trigger()")
public void beforeMethod(JoinPoint point){
Method[] a = point.getSignature().getClass().getDeclaredMethods();
for(int i=0; i < a.length; i++){
//if method has such arguments then
if(a[i] 'has args String name, String role, Int Money'){
//And if these arguments meets such requirements
if(a[i].argument(Int.class) > 1000 or a[i].argument(String role).equals("normal"))
//Stop executing this method
a[i].stop
}
}
}

我知道这只是伪代码,所以它看起来可能不正确,但我希望你能明白。如果满足或不满足某些要求,是否有一些 JoinPoint 方法可以停止扫描方法?

最佳答案

直接抛出异常怎么样?

if (!isAllowed) {
throw new NotAuthorizedException(..)
}

关于Java - Spring AOP - 使用之前的建议停止执行方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21188885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com