- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我执行一些业务逻辑,例如我有业务逻辑方法:
@Override
@ByPassable(exceptions = {"InvalidIdentityException"})
public void validate(Model model) {
if (nonNull(model)) {
final boolean test = isOk(model.getIdentity());
if (test) {
throw new InvalidIdentityException("Invalid bla bla");
}
}
}
和自定义异常类:
public class InvalidIdentityException extends SomeException {
public InvalidIdentityException (final String message) {
super(message);
}
}
方法上的
@ByPassable
获取可以绕过的异常列表,因此在本例中,InvalidIdentityException
会被抛出,并且在不久的将来它会变为bypassable
当重新执行该方法时。
我为我的 Spring Boot 应用程序启动了一个 bean,该应用程序具有一组可绕过的异常:
public class Config {
@Bean("bypassable-exceptions")
public Set<String> getBypassableExceptions() {
final Set<String> exceptions = new HashSet<>();
new Reflections(new MethodAnnotationsScanner())
.getMethodsAnnotatedWith(ByPassable.class).stream()
.filter(method -> method.getAnnotation(ByPassable.class).enabled())
.forEach(method -> {
final String[] exceptions = method.getAnnotation(ByPassable.class).exceptions();
exceptions.addAll(Arrays.asList(exceptions));
});
return exceptions;
}
}
每当在方法中引发 Bypassable
异常时,我的应用程序都会将 Throwable
对象作为 Json 保留在数据库中,但是我需要一个额外的 boolean 属性bypassable
在此可抛出对象上,应更新 @BeforeThrowing
异常作为拦截。这可能吗?
public class ExceptionAspect {
@Pointcut("@annotation(com.services.aop.ByPassable)")
public void byPassableExceptionMethods() {
}
@BeforeThrowing(pointcut = "byPassableExceptionMethods()", throwing = "exception")
public void beforeThrowingAdviceForByPassableExceptionMethods(final JoinPoint jp,
final Throwable exception) {
// check against the set of bypassable exceptions and update a custom property on the exception
class so when Throwable is persisted it is persisted with this customer property e.g. bypassable
= true
}
最佳答案
来自 Spring 引用文档:AOP Concepts没有建议类型@BeforeThrowing
.
在 Spring AOP 中,可以建议方法执行(连接点) - 在方法开始之前、方法结束之后(有或没有异常)或前后(在方法开始之前和方法结束之后)。这也意味着该方法内的逻辑在运行时无法更改,只能操作方法执行的输入或结果。
根据共享的代码逻辑,异常是根据方法内的验证引发的,并且 Spring AOP 在引发异常之前不提供通知句柄。
话虽如此,以下是我能想到的实现相同目标的方法。
bypassable
引发可绕过异常可以在异常实例创建时本身进行设置。这是最简单的方法。以下是我为实现相同目的而提出的 Spring AOP 方法。
@AfterThrowing
可以按如下方式设置可绕过。
@BeforeThrowing
可以模拟。
注意:使用 Spring AOP 无法拦截内部调用。引用文档中的相关信息可以在section下找到。 。
Due to the proxy-based nature of Spring’s AOP framework, calls within the target object are, by definition, not intercepted.
因此,出于演示目的,示例代码 Autowiring 了自己的引用。抛出异常的方法可以移至另一个bean并进行类似的拦截。
对示例进行了以下更改。
可绕过异常以拥有公共(public)基类
public class BaseBypassableException extends RuntimeException {
private boolean bypassable;
public BaseBypassableException(String message) {
super(message);
}
public boolean isBypassable() {
return bypassable;
}
public void setBypassable(boolean bypassable) {
this.bypassable = bypassable;
}
}
可绕过的异常从公共(public)基类扩展
public class InvalidIdentityException extends BaseBypassableException {
public InvalidIdentityException(String message) {
super(message);
}
}
建议方法修改如下。 (示例有 String
而不是 Model
)
@Component
public class BypassableServiceImpl implements BypassableService {
@Autowired
BypassableService service;
@Override
@ByPassable(exceptions = {"InvalidIdentityException"})
public void validate(String model) {
if (null != model) {
final boolean test = !("Ok".equals(model));
if (test) {
service.throwException(new InvalidIdentityException("Invalid bla bla"));
}
}
System.out.println("Validate called : "+model);
}
@Override
public void throwException(BaseBypassableException exception) {
throw exception;
}
}
建议这两种方法的方面。 throwing
基于异常类型的过滤器,因此对于示例,我没有包含检查 bypassableExceptionNames
的逻辑并且逻辑安全地假设异常的类型为 BaseBypassableException
。如果需要,可以修改逻辑以包括检查。
@Component
@Aspect
public class ExceptionAspect {
@Autowired
@Qualifier("bypassable-exceptions")
Set<String> bypassableExceptionNames;
@Pointcut("@annotation(com.services.aop.ByPassable)")
public void byPassableExceptionMethods() {
}
@AfterThrowing(pointcut = "byPassableExceptionMethods()", throwing = "exception")
public void afterThrowingAdviceForByPassableExceptionMethods(final JoinPoint jp,
final BaseBypassableException exception) {
System.out.println(jp.getSignature());
System.out.println("Before " + exception.isBypassable());
exception.setBypassable(true);
System.out.println("After " + exception.isBypassable());
System.out.println(exception);
}
@Before("execution(* com.services..*.*(..)) && args(exception)")
public void beforeThrowingAdviceForByPassableExceptionMethods(final JoinPoint jp,
final BaseBypassableException exception) {
System.out.println(jp.getSignature());
System.out.println("Before " + exception.isBypassable());
exception.setBypassable(true);
System.out.println("After " + exception.isBypassable());
System.out.println(exception);
}
}
希望这有帮助
关于java - 将元数据添加到 java throwable 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61483347/
我正在尝试弄清楚如何将 Throwable\/List[Throwable\/A] 干净利落地排列成 Throwable\/List[A] ,可能使用 List 的 Traverse 实例,但我似乎无
在不创建新 Throwable 的情况下添加一种通用方法来向 Throwable 添加信息是否有益? 我经常看到这样的代码: try { foo(); } catch (Exception e
当发生异常并且我得到 Throwable 时,我想将它转换为 MyThrowable 并重新抛出它。 我正在实现实例创建的方法 obs1 = obs1.map(new Func1() {
我有一个带 @Aspect 注释的类正在调用 ProceedingJoinPoint#proceed() 。此方法抛出 Throwable,因此该类看起来像这样: @Aspect @Component
我知道网络上充斥着不要捕获 Throwable 的建议,但是它适用于使用 CompleteableFuture 吗?例如,在 ExecutorService es = Executors.ne
这个问题在这里已经有了答案: No Exception while type casting with a null in java (10 个答案) 关闭 7 年前。 这个问题只是让我理解这个概念
假设我有几种方法可以返回 \/[Throwable, String]。右边的值 Int 是我想要的,左边的值累积错误。 import scalaz._ import Scalaz._ type Err
今天我去部署一个我创建的 Java 应用程序到 Google App Engine,但我遇到了一些非常无用的错误消息。 Invocation of init method failed; nested
我正在实现一个 AOP 拦截器,它处理 RetryTemplate 中的逻辑。问题是 ProceedingJoinPoint#execute 被声明为抛出 Throwable,但 RetryTempl
首先我必须说我阅读了以下内容:http://docs.oracle.com/javase/tutorial/essential/exceptions/index.html ! 尝试编译时出现的错误如下
我正在编辑别人的代码,并且一个方法有“Throws Throwable”。我把它去掉了,所以 Eclipse 会让我只添加它需要抛出的异常类型...但是,我在调用父类(super class)(我当前
当我开发 android 应用程序时,我想制作一个 CrashReport 类,然后使用它向我的服务器发送报告。 我做了一个名为CrashHandler的类,它实现了UncaughtException
我在java中得到了这段代码: public static void main(String[] args) { try{ Class tryLoadi
我正在使用 JDK8 在 macOS 上工作。 在 catch 中,我必须给出异常的完整名称,例如在这种情况下 (ArithmeticException e) 而不是 (Exception e)运行代
我有一个执行 I/O 的类(我们称之为 ABC)。像 FileOutputStream.close 这样的东西会让你在它们周围使用 try catch block 。此外,我创建了自己的可抛出对象,帮
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why doesn’t Java allow generic subclasses of Throwable
我在这里看到了很多关于 Exception 和 Throwable 之间区别的一般性问题。我知道其中的区别,而且我有一个更具体的问题。 我正在编写一个库,用于绑定(bind)并运行多个用户提供的代码片
我已经捕获了任何未捕获的异常 Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
我有一些外部提供的回调要运行。因为它们可以包含任何东西,所以我更愿意冒险在它们上捕获 Throwable 并因此从任何可恢复的错误中恢复。 回调执行的某些阶段允许抛出错误,除非错误连续重复两次。在这种
在java语言中,错误类的基类是java.lang.Error,异常类的基类是java.lang.Exception。 1)相同点:java.lang.Error和java.lang.Excepti
我是一名优秀的程序员,十分优秀!