-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
934 lines (598 loc) · 33.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
lazyfighter.com
</title>
<link href="atom.xml" rel="alternate" title="lazyfighter.com" type="application/atom+xml">
<link rel="stylesheet" href="asset/css/foundation.min.css" />
<link rel="stylesheet" href="asset/css/docs.css" />
<script src="asset/js/vendor/modernizr.js"></script>
<script src="asset/js/vendor/jquery.js"></script>
<script src="asset/highlightjs/highlight.pack.js"></script>
<link href="asset/highlightjs/styles/github.css" media="screen, projection" rel="stylesheet" type="text/css">
<script>hljs.initHighlightingOnLoad();</script>
<script type="text/javascript">
function before_search(){
var searchVal = 'site: ' + document.getElementById('search_input').value;
document.getElementById('search_q').value = searchVal;
return true;
}
</script>
</head>
<body class="antialiased hide-extras">
<div class="marketing off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<section class="top-bar-section">
<div class="row">
<div style="position: relative;width:100%;"><div style="position: absolute; width:100%;">
<ul id="main-menu" class="left">
<li id=""><a target="self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
<ul class="right" id="search-wrap">
<li>
<form target="_blank" onsubmit="return before_search();" action="https://google.com/search" method="get">
<input type="hidden" id="search_q" name="q" value="" />
<input tabindex="1" type="search" id="search_input" placeholder="Search"/>
</form>
</li>
</ul>
</div></div>
</div>
</section>
</nav>
<nav class="tab-bar show-for-small">
<a href="javascript:void(0)" class="left-off-canvas-toggle menu-icon">
<span> lazyfighter.com</span>
</a>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><a target="self" href="index.html">Home</a></li>
<li><a target="_self" href="archives.html">Archives</a></li>
<li><label>Categories</label></li>
<li><a href="spring.html">spring</a></li>
<li><a href="apache-dubbo.html">apache-dubbo</a></li>
<li><a href="Java%E7%BC%96%E7%A8%8B%E5%8F%91%E6%94%BE%E8%AE%BA%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0.html">Java编程发放论读书笔记</a></li>
<li><a href="netty.html">netty</a></li>
<li><a href="rocketmq.html">rocketmq</a></li>
<li><a href="apache-camel.html">apache-camel</a></li>
<li><a href="sofa-rpc.html">sofa-rpc</a></li>
<li><a href="java.html">java</a></li>
<li><a href="sentinel.html">sentinel</a></li>
<li><a href="react.html">react</a></li>
</ul>
</aside>
<a class="exit-off-canvas" href="#"></a>
<section id="main-content" role="main" class="scroll-container">
<script type="text/javascript">
$(function(){
$('#menu_item_index').addClass('is_active');
});
</script>
<div class="row">
<div class="large-8 medium-8 columns">
<div class="markdown-body home-categories">
<div class="article">
<a class="clearlink" href="15625738990440.html">
<h1>Broker启动流程</h1>
<div class="a-content">
<div class="a-content-text">
<ol>
<li>设置默认的<code>socketSendBufferSize</code>以及<code>socketRcvBuffSize</code></li>
<li></li>
</ol>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2019/7/8</span>
<span>posted in </span>
<span class="posted-in"><a href='rocketmq.html'>rocketmq</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15625684305136.html">
<h1>路由中心NameServer</h1>
<div class="a-content">
<div class="a-content-text">
<p>NameServer是RocketMQ路由管理、服务注册以及服务发现的实现。</p>
<p>消息中间件的实际思路一般基于订阅发布机制,消息生成者Producer发送某一主题的消息到消息服务器,消息服务器负责消息的持久化存储,消息消费者Consumer订阅感兴趣的主题,消息服务器根据客户端的订阅信息推送消息到消费者PUSH模式或者消息客户端主动向服务器拉取消息PULL模式,从而实现消息生产者和消息消费者的解耦。</p>
<p>为了避免消息服务器宕机导致整个消息系统瘫痪,通常会部署多台服务器,那么生产者如何知道消息发送到那台服务器,如果某台消息服务器宕机如何能够被生产者感知,NameServer就是为了解决上述的问题。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="15625684305136.html">Read more</a>
<span class="date">2019/7/8</span>
<span>posted in </span>
<span class="posted-in"><a href='rocketmq.html'>rocketmq</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15625659827923.html">
<h1>RocketMQ概览</h1>
<div class="a-content">
<div class="a-content-text">
<p>RocketMQ基于主体的发布订阅模式,核心功能包括: 消息发送、消息存储Broker、消息消费。</p>
<p><strong>自研NameServer充当注册中心</strong>,实现元数据管理(Tocpic路由信息等),Topic路由信息无须再集群之间保持强一致,追求最终一致性,能够容忍分钟级的不一致。基于此,NameServer之间不会互相通信因此对网络的要求降低了,同时对比zk性能也有很大的提升。</p>
<p><strong>高效的IO存储机制</strong>RocketMQ准求消息发送的高吞吐量,存储文件设计成文件组的概念,组内单个文件大小固定,方便内存映射机制,所有的消息存储基于顺序写,极大的提供了消息的写性能,同时兼容消息消费查找,引入消息消费队列文件和索引文件。</p>
<p><strong>适当将某些工作下发给RocketMQ使用者</strong>我们进场会遇到类似的问题,如何确保消息一定被消费,并且只保证消息消费一次。RocketMQ在设计实现中,只会保证消息被消费者消费但不会保证只消费一次,将不重复消费下发给使用者自行解决,因此设计起来简单高效。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="15625659827923.html">Read more</a>
<span class="date">2019/7/8</span>
<span>posted in </span>
<span class="posted-in"><a href='rocketmq.html'>rocketmq</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15621422737770.html">
<h1>通过消息头中定义长度字段来标识消息的总长度</h1>
<div class="a-content">
<div class="a-content-text">
<p>TCP是以流的方式进行数据传输的,上层应用协议为了对消息进行区分,那么就可以通过这种方式,在消息头中定义数据的长度,来避免粘包造成的问题。</p>
<h2 id="toc_0">LengthFieldBasedFrameDecoder</h2>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2019/7/3</span>
<span>posted in </span>
<span class="posted-in"><a href='netty.html'>netty</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15620535102889.html">
<h1>第1章 响应式编程总览</h1>
<div class="a-content">
<div class="a-content-text">
<p>异步编程模式以为这在执行main函数的主线程下同时并行且非阻塞的运行一个或者多个任务,这类似于一个小组负责一个项目,会在主任务进展过程中同时要求组里的一些人执行一些独立的相关的任务,而主线程只需要需要相关的结果。</p>
<p>异步编程模式最主要的好处<strong>使程序的性能和相应速度得到大幅提升</strong></p>
<h2 id="toc_0">并发与并行</h2>
<p><strong>并发</strong><br/>
很好的利用了CPU时间片的特性,也就是操作系统在当前时间片选择并运行一个任务,接着在下一个时间片内选择并运行另一个任务,把前一个任务设置为等待状态。</p>
<p>并发带来的问题</p>
<ul>
<li>频繁的上下文切换,会导致降低性能,例如Stream中的并行流当任务量很小的时候</li>
<li>频繁的开启关闭线程,会产生大量的性能开销,导致降低程序性能</li>
<li>当线程大量阻塞在等待IO的过程中,并发会阻塞CPU资源。</li>
<li>共享数据问题,并发会带来各个想成中的状态的一致性</li>
</ul>
<p><strong>并行</strong></p>
<p>在多个CPU核上同一时间运行多个任务,或者一个任务分为多块执行<code>ForkJoin</code>,在单核CPU不存在并行。</p>
<p><u>总结下,多线程就以为并发,但是并行只发生在将这些线程同一时间调度分配到不通CPU核上执行的时候,也就是说并行是并发的一种特定形式。</u></p>
<h2 id="toc_1">并行开发初探</h2>
<p>CPU是一个接着一个指令执行任务的,类比项目分解,这里所谓的并行开发就是讲一个大任务拆分成许多部分来同时执行的,这样就更好的利用了多处理器多核环境,而拆分的每个任务都是独立执行的,并且每个任务批次之间的执行顺序也没什么关系,通过并行执行,加快解决速度。</p>
<p>可以想象一下java中的<code>Stream</code>或者linux中的管道,从中抽象出一个好用的模型,然后将并发处理的开关操作作为一环加入。</p>
<h2 id="toc_2">流 Stream</h2>
<p>特性:</p>
<ul>
<li>流中的元素是有顺序的</li>
<li>流需要一个数据源,可以是集合、数组、文件等等</li>
<li>丰富而流畅的处理操作API,如filter、map、skip、limit等等</li>
<li>包含一些引入操作,例如元素迭代</li>
</ul>
<h2 id="toc_3">响应式流 Reactive Stream</h2>
<h3 id="toc_4">响应流的特性</h3>
<h4 id="toc_5">1. 异步</h4>
<p>在传统的开发模式下,我们是一个方法接着一个方法执行的,最终消耗的时间长是这些方法消耗的总时长,而基于异步编程模式,由于这些操作时同时并行执行的,因此最终消耗的市场是这些操作中消耗时间最长的操作所消耗的时长。</p>
<h4 id="toc_6">2. 背压 Back Pressure</h4>
<p>背压是响应流的一个规范,流中的元素由生产者Producer在一端生产出来,而在另一端由消费者Consumer消费掉,一旦元素的生产速度超过了消费者的消费速度,就会造成挤压,随着这种挤压的不断增加程序性能就会下降直至程序挂掉,背压Back Pressure就是解决这个问题的,虽然他可能会增加元素的处理时间,但是它建立一个弹性机智,允许程序内部按需调节而不至于使程序崩溃。</p>
<p>元素由发布者生产、发布由订阅者货消费者在下游收集截下来,消费者会根据需求发送一个信号给上游,一次来保证可以将所需元素安全的推送给消费者,而发送信号这个动作是异步进行的。对应订阅者来讲其可以通过一个拉取策略来发送更多的请求以获取元素。</p>
<h2 id="toc_7">响应式开发的设计原则</h2>
<p>分而治之的思想,我们讲一个大任务分解成很多小任务并发执行增加处理速度,通过响应式编程设计即可以轻松的做到这一点。</p>
<p>响应式系统提供了注入可响应能力、高可用性、弹性机智、消息驱动和可扩展等机智,从而确保响应式编程不会使系统资源一直被占用,这样可以是系统的其他组件正常运行。</p>
<h4 id="toc_8">1. 可响应能力</h4>
<p>可相应能力是一个应用程序最重要的功能,在编程的时候我们希望能有一个高效、统一的格式,包括对错误的处理响应,类似于Spring的<code>ExceptionHandler</code></p>
<h4 id="toc_9">2. 高可用性</h4>
<p>我们的应用可能会挂掉,无法提供服务,因此我们可以提供各种各样的集群确保服务不间断。</p>
<h4 id="toc_10">3. 弹性机制</h4>
<p>每当有数据到达时,系统会根据需要分配计算资源,以保证数据得到及时处理。响应式系统提供了一个弹性算法机智,当资源需求增长时,分配的计算资源也随之增长,当资源需求减少是,多分配的资源会随之回收。</p>
<h4 id="toc_11">4. 消息驱动</h4>
<p>消息驱动就是将每个人比作系统的一个个微服务组件,人人之间的交流通过消息进行,响应式系统通过使用异步的消息在各个组件间交流、通信,这样就可以成功的做到各个组件之间的隔离和松耦合,也就可以轻松灵活的维护扩展系统了。</p>
<h4 id="toc_12">5. 可扩展性</h4>
<p>开发中需求是不断的,上面提到过因为消息驱动导致各个模块之间是松耦合的因此扩展起来非常方便。</p>
<h2 id="toc_13">响应式开发的好处</h2>
<p>主要包含以下几点</p>
<ul>
<li>提供应用性能</li>
<li>多核机器上,提供计算资源的利用率</li>
<li>为异步编程提供了一个更靠谱的可维护方案</li>
<li>提供了背压机制</li>
</ul>
<h2 id="toc_14">RxJava简介</h2>
<p>消息驱动模式</p>
<ul>
<li><code>Observable</code> 表示数据源,会发出一定数量的元素,发送可能成功或者失败</li>
<li><code>Observer</code>或<code>Subscriber</code> 表示订阅者,监听<code>Observable</code>消费其发出的元素</li>
<li><code>Methods</code> 表示一系列操作的API,对下发数据进行加工整合</li>
<li><code>onNext</code> 表示一个元素被<code>Observable</code>发送出去后通过该方法可以调用每个订阅者</li>
<li><code>onComplete</code> 表示在<code>Observable</code>发送所有数据后,会调用这个方法进行收尾</li>
<li><code>onError</code> 表示发送过程中出现错误会调用这个方法</li>
</ul>
<h2 id="toc_15">Reactor简介</h2>
<p>事件驱动模式</p>
<p>Reactor支持完全无阻塞,其主要的目标之一就是解决传统Web开发方案对于异步支持的各种弊病,提供了十分有效的途径支持背压。</p>
<p>Reactor主要模块是<code>reactor-core</code>,Reactor3是Reactor2和RxJava的混合版本。<br/>
主要概念</p>
<ul>
<li><code>Mono</code> 表示一个特殊的Publisher,可以发送0个或1个元素</li>
<li><code>Flux</code> 表示一个特殊的Publisher,可以发送0-n个元素</li>
<li>操作符 表示元素再从Publisher发送给订阅者之前,进行的一些处理</li>
</ul>
<h2 id="toc_16">Java9中的响应式编程</h2>
<p>Java9 目前已经开始支持响应式编程,主要为<code>java.util.concurrent.Flow</code>类,其中所包含的接口和定义的静态方法都是用来支持Flow控制编程的。</p>
<h3 id="toc_17">Java9中的响应式编程接口</h3>
<p><img src="media/15620535102889/15620584499308.jpg" alt=""/></p>
<p><img src="media/15620535102889/15620584866933.jpg" alt=""/><br/>
<img src="media/15620535102889/15620584992306.jpg" alt=""/></p>
<p>由图可知<code>Publisher</code>用于发布元素,并将元素推送给<code>Processor</code>,<code>Processor</code>在将元素推送给<code>Subscriber</code>,<code>Subscriber</code>通过<code>onNext</code>方法接受元素。</p>
<p><code>Processor</code>通过调用<code>Subscription::request</code>方法来从<code>Publisher</code>请求元素,此时<code>Processor</code>作为订阅者。</p>
<pre><code class="language-java">package com.lazyfighter.flow;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Flow;
import java.util.concurrent.Future;
public class DockerXDemoPublisher<T> implements Flow.Publisher, AutoCloseable {
private ExecutorService executorService;
private CopyOnWriteArrayList<DockerXDemoSubscription> list = new CopyOnWriteArrayList<DockerXDemoSubscription>();
public DockerXDemoPublisher(ExecutorService executorService) {
this.executorService = executorService;
}
@Override
public void close() {
list.forEach(e -> {
e.future = executorService.submit(() -> e.subscriber.onComplete());
});
}
public void submit(T item) {
System.out.println("*********开始发布元素item : "+ item + "**********");
list.forEach(e -> {
e.future = executorService.submit(() -> e.subscriber.onNext(item));
});
}
@Override
public void subscribe(Flow.Subscriber subscriber) {
subscriber.onSubscribe(new DockerXDemoSubscription<T>(subscriber, executorService));
list.add(new DockerXDemoSubscription(subscriber, executorService));
}
static class DockerXDemoSubscription<T> implements Flow.Subscription {
private final Flow.Subscriber<? super T> subscriber;
private final ExecutorService executorService;
private Future<?> future;
private T item;
private boolean completed;
public DockerXDemoSubscription(Flow.Subscriber<? super T> subscriber, ExecutorService executorService) {
this.subscriber = subscriber;
this.executorService = executorService;
}
@Override
public void request(long n) {
if (n != 0 && !completed) {
if (n < 0) {
IllegalArgumentException exception = new IllegalArgumentException();
executorService.execute(() -> subscriber.onError(exception));
} else {
future = executorService.submit(() -> subscriber.onNext(item));
}
} else {
subscriber.onComplete();
}
}
@Override
public void cancel() {
completed = true;
if (future != null && !future.isCancelled()) {
this.future.cancel(true);
}
}
}
}
</code></pre>
<pre><code class="language-java">package com.lazyfighter.flow;
import java.util.concurrent.Flow;
public class DockerXDemoSubscriber<T> implements Flow.Subscriber<T> {
private String name;
private Flow.Subscription subscription;
private long bufferSize;
long count;
@Override
public void onSubscribe(Flow.Subscription subscription) {
this.subscription = subscription;
subscription.request(bufferSize);
System.out.println("开始onSubscribe订阅");
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
@Override
public void onNext(T item) {
System.out.println(" ##### " + Thread.currentThread().getName() + " ----- name :" + name + "item: " + item);
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
@Override
public void onError(Throwable throwable) {
throwable.printStackTrace();
}
@Override
public void onComplete() {
System.out.println("completed");
}
public String getName() {
return name;
}
public Flow.Subscription getSubscription() {
return subscription;
}
public long getBufferSize() {
return bufferSize;
}
public DockerXDemoSubscriber(long bufferSize, String name) {
this.name = name;
this.bufferSize = bufferSize;
}
}
</code></pre>
<pre><code class="language-java">package com.lazyfighter.flow;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;
public class main {
public static void main(String[] args) {
ExecutorService forkJoinPool = ForkJoinPool.commonPool();
try (DockerXDemoPublisher<Integer> publisher = new DockerXDemoPublisher<>(forkJoinPool)) {
demoSubscibe(publisher, "One");
demoSubscibe(publisher, "Two");
demoSubscibe(publisher, "Three");
IntStream.range(1, 5).forEach(publisher::submit);
} finally {
try {
forkJoinPool.shutdown();
int shutDownDelaySec = 1;
System.out.println(".........等待 " + shutDownDelaySec + "秒后结束服务.......");
forkJoinPool.awaitTermination(shutDownDelaySec, TimeUnit.SECONDS);
} catch (Exception e) {
e.printStackTrace();
} finally {
System.out.println("shut down now");
List<Runnable> runnables = forkJoinPool.shutdownNow();
System.out.println("还剩" + runnables.size() + "个任务等待执行");
}
}
}
private static void demoSubscibe(DockerXDemoPublisher<Integer> publisher, String subscriberName) {
DockerXDemoSubscriber<Integer> subscriber = new DockerXDemoSubscriber<>(4L, subscriberName);
publisher.subscribe(subscriber);
}
}
</code></pre>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2019/7/2</span>
<span>posted in </span>
<span class="posted-in"><a href='Java%E7%BC%96%E7%A8%8B%E5%8F%91%E6%94%BE%E8%AE%BA%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0.html'>Java编程发放论读书笔记</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15616218525138.html">
<h1>Dubbo服务的导出过程</h1>
<div class="a-content">
<div class="a-content-text">
<p>本文我们将分析下Dubbo的整体导出流体对Dubbo有一个整体流程的认识,文中会参考Dubbo官网中的内容<a href="http://dubbo.apache.org/zh-cn/docs/source_code_guide/export-service.html">服务导出</a>。</p>
<pre><code class="language-java">public static void main(String[] args) throws Exception {
ServiceConfig<DemoServiceImpl> service = new ServiceConfig<>();
ApplicationConfig applicationConfig = new ApplicationConfig("dubbo-demo-api-provider");
applicationConfig.setRegistry(new RegistryConfig("multicast://224.5.6.7:1234"));
service.setApplication(applicationConfig);
service.setInterface(DemoService.class);
service.setRef(new DemoServiceImpl());
service.export();
System.in.read();
}
</code></pre>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="15616218525138.html">Read more</a>
<span class="date">2019/6/27</span>
<span>posted in </span>
<span class="posted-in"><a href='apache-dubbo.html'>apache-dubbo</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15615417791171.html">
<h1>Dubbo中的自适应</h1>
<div class="a-content">
<div class="a-content-text">
<p>Dubbo中的自适应主要有两个功能指定一个默认的扩展,另一个是根据用户的协议或者参数去自适应找到相应的扩展。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="15615417791171.html">Read more</a>
<span class="date">2019/6/26</span>
<span>posted in </span>
<span class="posted-in"><a href='apache-dubbo.html'>apache-dubbo</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="15615331954677.html">
<h1>DUBBO里面的Config</h1>
<div class="a-content">
<div class="a-content-text">
<p>Dubbo里面的Config都继承自<code>AbstractConfig</code>类,提供类一些检查方法。</p>
<p><img src="media/15615331954677/15615362713863.jpg" alt=""/></p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<a href="15615331954677.html">Read more</a>
<span class="date">2019/6/26</span>
<span>posted in </span>
<span class="posted-in"><a href='apache-dubbo.html'>apache-dubbo</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="row">
<div class="large-6 columns">
<p class="text-left" style="padding-top:25px;">
</p>
</div>
<div class="large-6 columns">
<p class="text-right" style="padding-top:25px;">
<a href="all_1.html">» Next Page</a>
</p>
</div>
</div>
</div>
</div><!-- large 8 -->
<div class="large-4 medium-4 columns">
<div class="hide-for-small">
<div id="sidebar" class="sidebar">
<div id="site-info" class="site-info">
<div class="site-a-logo"><img src="https://pic.wenwen.soso.com/p/20141016/20141016170205-https://pic.wenwen.soso.com/p/20141016/20141016170205-1919883500.jpg" /></div>
<h1>lazyfighter.com</h1>
<div class="site-des"></div>
<div class="social">
<a target="_blank" class="github" target="_blank" href="https://github.com/lazyfighter" title="GitHub">GitHub</a>
<a target="_blank" class="email" href="mailto:[email protected]" title="Email">Email</a>
<a target="_blank" class="rss" href="atom.xml" title="RSS">RSS</a>
</div>
</div>
<div id="site-categories" class="side-item ">
<div class="side-header">
<h2>Categories</h2>
</div>
<div class="side-content">
<p class="cat-list">
<a href="spring.html"><strong>spring</strong></a>
<a href="apache-dubbo.html"><strong>apache-dubbo</strong></a>
<a href="Java%E7%BC%96%E7%A8%8B%E5%8F%91%E6%94%BE%E8%AE%BA%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0.html"><strong>Java编程发放论读书笔记</strong></a>
<a href="netty.html"><strong>netty</strong></a>
<a href="rocketmq.html"><strong>rocketmq</strong></a>
<a href="apache-camel.html"><strong>apache-camel</strong></a>
<a href="sofa-rpc.html"><strong>sofa-rpc</strong></a>
<a href="java.html"><strong>java</strong></a>
<a href="sentinel.html"><strong>sentinel</strong></a>
<a href="react.html"><strong>react</strong></a>
</p>
</div>
</div>
<div id="site-categories" class="side-item">
<div class="side-header">
<h2>Recent Posts</h2>
</div>
<div class="side-content">
<ul class="posts-list">
<li class="post">
<a href="15625738990440.html">Broker启动流程</a>
</li>
<li class="post">
<a href="15625684305136.html">路由中心NameServer</a>
</li>
<li class="post">
<a href="15625659827923.html">RocketMQ概览</a>
</li>
<li class="post">
<a href="15621422737770.html">通过消息头中定义长度字段来标识消息的总长度</a>
</li>
<li class="post">
<a href="15620535102889.html">第1章 响应式编程总览</a>
</li>
</ul>
</div>
</div>
</div><!-- sidebar -->
</div><!-- hide for small -->
</div><!-- large 4 -->
</div><!-- row -->
<div class="page-bottom clearfix">
<div class="row">
<p class="copyright">Copyright © 2015
Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a>,
Theme used <a target="_blank" href="http://github.com">GitHub CSS</a>.</p>
</div>
</div>
</section>
</div>
</div>
<script src="asset/js/foundation.min.js"></script>
<script>
$(document).foundation();
function fixSidebarHeight(){
var w1 = $('.markdown-body').height();
var w2 = $('#sidebar').height();
if (w1 > w2) { $('#sidebar').height(w1); };
}
$(function(){
fixSidebarHeight();
})
$(window).load(function(){
fixSidebarHeight();
});
</script>
</body>
</html>