dubbo异常拦截(ExceptionFilter)
在一些业务场景, 往往需要自定义异常来满足特定的业务, 在抛出异常后, 通过捕获还有instanceof
来判断是否是自定义异常, 然后做特定的业务处理.
在dubbo
调用中, 当provider
抛出异常后, consumer
是否可以通过上述方法来达到业务需求了呢?
目前dubbo已知拓展com.alibaba.dubbo.rpc.filter.ExceptionFilter
就是专门处理异常的.
下面通过ExceptionFilter
源码来看看它是怎么处理的:
// filter拦截方法
public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
try {
Result result = invoker.invoke(invocation);
// 判断调用结果是否存在异常
if (result.hasException() && GenericService.class != invoker.getInterface()) {
try {
Throwable exception = result.getException();
// (如果是checked异常则直接抛异常)directly throw if it's checked exception
if (!(exception instanceof RuntimeException) && (e