美文网首页Dubbo 源码学习DubboDubbo
面试时被问到Dubbo的一些坑,该如何回答

面试时被问到Dubbo的一些坑,该如何回答

作者: java高并发 | 来源:发表于2019-03-14 15:06 被阅读103次

    面试的时候,把源码一波分析,令面试官虎躯一震!在一阵前戏过后,以为接下来无非就是身体的一顿抽搐一切变得索然无味,不料面试官来了句令剧情发生了反转

    "你对Dubbo源码这么熟悉,那请问你使用的时候,有没有遇到什么坑"

    我擦,毫无准备的他,菊花顿时一紧!此时就面临唬住了50K,唬不住就只能5K的局面,慌了!

    论如何反杀

    相信大家面试都遇到过类似问题,因为源码解析网上很多,很多人"考前突击"一下,但是遇到喜欢问细节的面试官,终究难逃法眼,无处遁形.遇到这个问题,我们如何反杀一波?那么我就从一次聊天记录说起,毕竟只有关注肥朝公众号,拥有真实场景的源码实战(非常重要),遇到这类问题,才不至于出现猛虎落泪的情形

    image

    真实场景描述

    image

    那么我们把业务相关去掉,抽取一个最简模型.我们在公司,一般都会有自己的自定义异常,然后这个自定义异常一般放在common.jar给其他模块依赖,比如我这里定义一个HelloException

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1public class HelloException extends RuntimeException {
    2
    3 public HelloException() {
    4 }
    5
    6 public HelloException(String message) {
    7 super(message);
    8 }
    9
    10}</pre>

    然后我们写一个最简单的Dubbo的demo,如下

    interface

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1public interface DemoService {
    2
    3 String sayHello(String name);
    4
    5}</pre>

    provider

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1public class DemoServiceImpl implements DemoService {
    2
    3 public String sayHello(String name) {
    4 throw new HelloException("公众号:肥朝");
    5 }
    6
    7}</pre>

    consumer

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1public class DemoAction {
    2
    3 private DemoService demoService;
    4
    5 public void setDemoService(DemoService demoService) {
    6 this.demoService = demoService;
    7 }
    8
    9 public void start() throws Exception {
    10 try {
    11 String hello = demoService.sayHello("公众号:肥朝");
    12 } catch (HelloException helloException) {
    13 System.out.println("这里捕获helloException异常");
    14 }
    15 }
    16
    17}</pre>

    按照聊天记录的描述,此时consumer调用provider,provider抛出HelloException.但是consumer捕获到的,却不是HelloException.

    image

    那么我们运行看看

    image

    果然如该同事所言.为什么会这样呢?之前没看过肥朝Dubbo源码解析系列的同学这种时候往往采用最低效的解决办法,把异常栈往微信群一丢,各种求助.但是往往毫无收获,然后感叹社会为何如此冷漠!

    但是相信公众号的老粉丝们早已掌握阅读源码的技能,和肥朝一样坐怀不乱,九浅一深直入源码.出现异常我们首先看一下异常栈

    image

    除非撸多了看不清(建议戒撸),否则这行异常和肥朝一样,就像漆黑中的萤火虫一样,那么鲜明,那么出众

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1com.alibaba.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:108)</pre>

    那么我们一探究竟

    <pre style="font: 400 0.8rem/1.45 Consolas, "Liberation Mono", Menlo, Courier, monospace; -webkit-font-smoothing: antialiased; margin: 0px 0px 10px; padding: 1rem 1.5rem; max-width: 100%; word-break: break-all; white-space: pre-line; color: rgb(86, 116, 130); overflow-wrap: normal; background: rgb(242, 245, 249); overflow: auto; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">1 public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {
    2 try {
    3 Result result = invoker.invoke(invocation);
    4 if (result.hasException() && GenericService.class != invoker.getInterface()) {
    5 try {
    6 Throwable exception = result.getException();
    7
    8 // 如果是checked异常,直接抛出
    9 if (! (exception instanceof RuntimeException) && (exception instanceof Exception)) {
    10 return result;
    11 }
    12 // 在方法签名上有声明,直接抛出
    13 try {
    14 Method method = invoker.getInterface().getMethod(invocation.getMethodName(), invocation.getParameterTypes());
    15 Class<?>[] exceptionClassses = method.getExceptionTypes();
    16 for (Class<?> exceptionClass : exceptionClassses) {
    17 if (exception.getClass().equals(exceptionClass)) {
    18 return result;
    19 }
    20 }
    21 } catch (NoSuchMethodException e) {
    22 return result;
    23 }
    24
    25 // 未在方法签名上定义的异常,在服务器端打印ERROR日志
    26 logger.error("Got unchecked and undeclared exception which called by " + RpcContext.getContext().getRemoteHost()
    27 + ". service: " + invoker.getInterface().getName() + ", method: " + invocation.getMethodName()
    28 + ", exception: " + exception.getClass().getName() + ": " + exception.getMessage(), exception);
    29
    30 // 异常类和接口类在同一jar包里,直接抛出
    31 String serviceFile = ReflectUtils.getCodeBase(invoker.getInterface());
    32 String exceptionFile = ReflectUtils.getCodeBase(exception.getClass());
    33 if (serviceFile == null || exceptionFile == null || serviceFile.equals(exceptionFile)){
    34 return result;
    35 }
    36 // 是JDK自带的异常,直接抛出
    37 String className = exception.getClass().getName();
    38 if (className.startsWith("java.") || className.startsWith("javax.")) {
    39 return result;
    40 }
    41 // 是Dubbo本身的异常,直接抛出
    42 if (exception instanceof RpcException) {
    43 return result;
    44 }
    45
    46 // 否则,包装成RuntimeException抛给客户端
    47 return new RpcResult(new RuntimeException(StringUtils.toString(exception)));
    48 } catch (Throwable e) {
    49 logger.warn("Fail to ExceptionFilter when called by " + RpcContext.getContext().getRemoteHost()
    50 + ". service: " + invoker.getInterface().getName() + ", method: " + invocation.getMethodName()
    51 + ", exception: " + e.getClass().getName() + ": " + e.getMessage(), e);
    52 return result;
    53 }
    54 }
    55 return result;
    56 } catch (RuntimeException e) {
    57 logger.error("Got unchecked and undeclared exception which called by " + RpcContext.getContext().getRemoteHost()
    58 + ". service: " + invoker.getInterface().getName() + ", method: " + invocation.getMethodName()
    59 + ", exception: " + e.getClass().getName() + ": " + e.getMessage(), e);
    60 throw e;
    61 }
    62 }</pre>

    1.如果是checked异常,直接抛出.很明显,我们的HelloException是RuntimeException,不符合

    2.在方法签名上有声明,直接抛出.很明显,我们接口并未声明该异常,不符合

    3.异常类和接口类在同一jar包里,直接抛出.很明显,我们的异常类是在common.jar的,接口是在api.jar的,不符合

    4.是JDK自带的异常,直接抛出.很明显,这个HelloException是我们自定义的,不符合

    5.是Dubbo本身的异常(RpcException),直接抛出.很明显,这个HelloException是我们自定义的,和RpcException几乎没有半毛钱关系.

    6.否则,包装成RuntimeException抛给客户端.因为以上5点均不满足,所以该异常会被包装成RuntimeException异常抛出(重要)

    这也就是为什么我们catchHelloException是catch不到的,因为他包装成RuntimeException了

    Dubbo为什么这么设计

    也许你看到这里会觉得这个判断好坑.Dubbo为什么要这么设计?我们看源码,最重要的是知道作者为什么这么设计,只有知道为什么这么设计才是经过了深度的思考,否则看时高潮,看后就忘.讲清楚为什么这么设计,也是大家关注肥朝公众号的一个重要原因.

    其实Dubbo的这个考虑,是基于序列化来考虑的.你想想,如果provider抛出一个仅在provider自定义的一个异常,那么该异常到达consumer,明显是无法序列化的.所以你注意看Dubbo的判断.我们来看下他的判断

    1.如果是checked异常,直接抛出.很明显,我们的HelloException是RuntimeException,不符合

    2.在方法签名上有声明,直接抛出.很明显,我们接口并未声明该异常,不符合

    3.异常类和接口类在同一jar包里,直接抛出.很明显,我们的异常类是在common.jar的,接口是在api.jar的,不符合

    4.是JDK自带的异常,直接抛出.很明显,这个HelloException是我们自定义的,不符合

    5.是Dubbo本身的异常(RpcException),直接抛出.很明显,这个HelloException是我们自定义的,和RpcException几乎没有半毛钱关系.

    6.否则,包装成RuntimeException抛给客户端.因为以上5点均不满足,所以该异常会被包装成RuntimeException异常抛出(重要)

    如何解决

    既然都知道了原理了,那么很好解决,我随便列举一下,比如从规范上要求业务方接口声明HelloException

    写在最后

    当然肥朝面试的时候,也曾经被问过类似问题,你用XXX有没有遇到过什么坑.在一波操作猛如虎的分析下,面试官说

    "你真帅".

    肥朝会心一笑

    image

    结果他却说

    "你笑起来更帅"!

    欢迎工作一到五年的Java工程师朋友们加入Java架构开发: 957734884,群内提供免费的Java架构学习资料(里面有高可用、高并发、高性能及分布式、Jvm性能调优、Spring源码,MyBatis,Netty,Redis,Kafka,Mysql,Zookeeper,Tomcat,Docker,Dubbo,Nginx等多个知识点的架构资料)合理利用自己每一分每一秒的时间来学习提升自己,不要再用"没有时间“来掩饰自己思想上的懒惰!趁年轻,使劲拼,给未来的自己一个交代!

    相关文章

      网友评论

        本文标题:面试时被问到Dubbo的一些坑,该如何回答

        本文链接:https://www.haomeiwen.com/subject/toaqmqtx.html