-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1459 lines (532 loc) · 43.1 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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-next muse use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/blog/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/blog/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/blog/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/blog/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/blog/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/blog/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/blog/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT" />
<meta property="og:type" content="website">
<meta property="og:title" content="JJH-NoteBook">
<meta property="og:url" content="https://jiangjihui.github.io/blog/index.html">
<meta property="og:site_name" content="JJH-NoteBook">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="JJH-NoteBook">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/blog/',
scheme: 'Muse',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="https://jiangjihui.github.io/blog/"/>
<title>JJH-NoteBook</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/blog/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">JJH-NoteBook</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">笔记本</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/blog/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/blog/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/04/25/2018042501/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/04/25/2018042501/" itemprop="url">Tomcat</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-04-25T19:53:51+08:00">
2018-04-25
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Tomcat"><a href="#Tomcat" class="headerlink" title="Tomcat"></a>Tomcat</h1><hr>
<p>一直用着tomcat作为应用服务器,但是对tomcat的原理一直停留在会用而已的阶段,今天仔细学习了下,看了网上大量的文章,把自己不懂的一些概念拿出来列出来,其中有各位大神的精炼解析,也添加了一些自己平时遇到的问题及解决方法</p>
<hr>
<h2 id="Tomcat处理资源"><a href="#Tomcat处理资源" class="headerlink" title="Tomcat处理资源"></a>Tomcat处理资源</h2><p><strong>Tomcat访问所有的资源,都是用Servlet来实现的。所以Tomcat又叫Servlet容器嘛,什么都交给Servlet来处理。</strong></p>
<p>在Tomcat看来,资源分3种:</p>
<ol>
<li>静态资源,如css,html,js,jpg,png等。交由DefaultServlet类处理</li>
<li>Servlet,交由InvokerServlet类处理</li>
<li>JSP,交由JspServlet类来处理</li>
</ol>
<p><strong>那么什么时候调用哪个Servlet呢?</strong></p>
<p>有一个类叫做org.apache.tomcat.util.http.mapper.Mapper,它一共进行了7个大的规则判断,第7个,就是判断是否是该用DefaultServlet。<br><strong>简单地说:</strong>先看是不是servlet,然后看是不是jsp,如果都不是,那么就是你DefaultServlet的活儿了。<br>到了DefaultServlet之后,就是一个普通的HttpServlet了,doPost方法会交由doGet处理,doGet又交由一个叫做 serveResource的方法处理,在serveResource方法里又瞎搞八搞了许多事情,最后在一个叫做copy()方法里,把静态资源对应的输入流读取出来,扔到了输出流里,这样你的浏览器就看到数据了。</p>
<hr>
<h2 id="Tomcat调优"><a href="#Tomcat调优" class="headerlink" title="Tomcat调优"></a>Tomcat调优</h2><p>Tomcat的优化分成两块:</p>
<ol>
<li>Tomcat启动命令行中的优化参数即JVM优化</li>
<li>Tomcat容器自身参数的优化(这块很像ApacheHttp Server)</li>
</ol>
<p><strong>1 启动行参数优化</strong></p>
<p>启动行参数的优化其实就是JVM的调优,可以参考网上JVM调优的一些方法(<a href="https://blog.csdn.net/wangyonglin1123/article/details/50986524" target="_blank" rel="noopener">这里给出一个链接</a>),Tomcat 的启动参数位于tomcat的安装目录\bin目录下的catalina.sh文件,在最开始注释文字的最后一段也就是真正有效的shell命令开始的那里加入需要添加的参数即可,需要注意的一点是在生产环境需要添加一个tomcat特有的参数:-server。这个参数告诉mysql这是在真正生产环境,它会自动做一些优化的。</p>
<p><strong>2 容器优化</strong><br>前面我们对Tomcat启动时的命令进行了优化,增加了系统的JVM可使用数、垃圾回收效率与线程阻塞情况、增加了系统响应效率等还有一个很重要的指标,我们没有去做优化,就是吞吐量。<br>打开tomcat安装目录\conf\server.xml文件,定位到这一行:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><connector port="8080" protocol="HTTP/1.1" ></span><br></pre></td></tr></table></figure>
<p>这一行就是我们的tomcat容器性能参数设置的地方,它一般都会有一个默认值,这些默认值是远远不够我们的使用的,我们来看经过更改后的这一段的配置(<a href="https://blog.csdn.net/wangyonglin1123/article/details/50986524" target="_blank" rel="noopener">配置的详细含义</a>):</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br></pre></td><td class="code"><pre><span class="line"><connector port="8080" protocol="HTTP/1.1" </span><br><span class="line"> URIEncoding="UTF-8" minSpareThreads="25" maxSpareThreads="75"</span><br><span class="line"> enableLookups="false" disableUploadTimeout="true" connectionTimeout="20000"</span><br><span class="line"> acceptCount="300" maxThreads="300" maxProcessors="1000" minProcessors="5"</span><br><span class="line"> useURIValidationHack="false"</span><br><span class="line"> compression="on" compressionMinSize="2048"</span><br><span class="line"> compressableMimeType="text/html,text/xml,text/javascript,text/css,text/plain"</span><br><span class="line"> redirectPort="8443"</span><br><span class="line"> /></span><br></pre></td></tr></table></figure>
<p><strong>3 Tomcat的运行模式</strong><br> <strong>bio</strong>: (blocking I/O),阻塞式I/O操作,一般而言,表示Tomcat使用的是传统的Java I/O操作。bio模式是三种运行模式中性能最低的一种。<br> <strong>nio</strong>: nio(new I/O),是Java SE 1.4及后续版本提供的一种新的I/O操作方式(即Java.nio包及其子包)。java nio是一个基于缓冲区、并能提供非阻塞I/O操作的Java API,因此nio也被看成是non-blocking I/O的缩写。它拥有比传统I/O操作(bio)更好的并发运行性能。关于nio与bio在tomcat上的差别可以参考这个简书:NIO只是优化了网络IO的读写,如果系统的瓶颈不在这里,比如每次读取的字节说都是500b,那么BIO和NIO在性能上没有区别。(个人感觉与socket的nio一样,并发小于1000时,区别不大,而并发很多的时候,更多的是使用nginx)<br> <strong>apr</strong>: (Apache Portable Runtime/Apache可移植运行时),是Apache HTTP服务器的支持库。可以简单地理解为Tomcat将以JNI的形式调用Apache HTTP服务器的核心动态链接库来处理文件读取或网络传输操作,从而大大地提高Tomcat对静态文件的处理性能。 Tomcat apr也是在Tomcat上运行高并发应用的首选模式。<br>修改运行模式为NIO模式:修改server.xml里的Connector节点,修改protocol为org.apache.coyote.http11.Http11NioProtocol</p>
<p><strong>注:</strong>通过对tomcat几个版本的测试,tomcat7默认启动是bio模式,需要优化;tomcat8及8以上默认是nio模式,无需改变运行模式,如果是windows版本的话,包里面还默认携带一个tcnative-1.dll,默认就是在Tomcat apr模式下运行。</p>
<hr>
<h2 id="Tomcat版本"><a href="#Tomcat版本" class="headerlink" title="Tomcat版本"></a>Tomcat版本</h2><p>之前在工作中遇到了tomcat 的启动问题,然后同事提到说tomcat的linux版本和windows版本可以互用的,于是去下载官网的源文件,通过对比发现,Linux版本的Tomcat和Windows相比,确实是可以互换的,windows版本包含全部linux版本的文件,只是在windows的版本中多加了2个.exe文件和一个tcnative-1.dll文件。查阅了下之类发现tcnative-1.dll是用于tomcat的apr模式使用。</p>
<hr>
<h2 id="编码设置"><a href="#编码设置" class="headerlink" title="编码设置"></a>编码设置</h2><p>之前遇到过tomcat的编码是UTF8的,但是怎么改都改不成GBK,然后查了很多资料,自己也找了很多地方,发现Tomcat 的编码通常在两个地方可以配置,一是conf/<strong>server.xml</strong>,二是bin/<strong>catalina.sh</strong></p>
<p><strong>conf/server.xml</strong></p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line"><Connector executor="tomcatThreadPool"</span><br><span class="line"> port="8088" protocol="HTTP/1.1"</span><br><span class="line"> redirectPort="8443" URIEncoding="GBK"/></span><br></pre></td></tr></table></figure>
<p><strong>bin/catalina.sh</strong></p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">JAVA_OPTS="${JAVA_OPTS} -Dfile.encoding=GBK"</span><br></pre></td></tr></table></figure>
<hr>
<blockquote>
<p>参考:<br> <a href="https://www.zhihu.com/question/57400909/answer/154753720" target="_blank" rel="noopener">Tomcat处理资源</a><br> <a href="https://blog.csdn.net/wangyonglin1123/article/details/50986524" target="_blank" rel="noopener">Tomcat调优</a></p>
</blockquote>
<hr>
<hr>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/04/24/2018042401/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/04/24/2018042401/" itemprop="url">MyBatis的执行流程</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-04-24T21:28:44+08:00">
2018-04-24
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="MyBatis的执行流程"><a href="#MyBatis的执行流程" class="headerlink" title="MyBatis的执行流程"></a>MyBatis的执行流程</h1><hr>
<ol>
<li><p>mybatis <strong>配置文件</strong>,包括Mybatis全局配置文件和Mybatis映射文件,其中全局配置文件配置了数据源、事务等信息;映射文件配置了SQL执行相关的信息。</p>
</li>
<li><p>mybatis通过读取配置文件信息(全局配置文件和映射文件),生成<strong>Configuration</strong>对象,然后根据Configuration构造出SqlSessionFactory,即会话工厂。</p>
</li>
<li><p>通过<strong>SqlSessionFactory</strong>,可以创建SqlSession即会话。Mybatis是通过SqlSession来操作数据库的。</p>
</li>
<li><p><strong>SqlSession</strong>本身不能直接操作数据库,它是通过底层的Executor执行器接口来操作数据库的。Executor接口有两个实现类,一个是普通执行器,一个是缓存执行器(默认)。MyBatis封装了对数据库的访问,把对数据库的会话和事务控制放到了SqlSession对象中</p>
</li>
<li><p><strong>Executor</strong>执行器要处理的SQL信息是封装到一个底层对象MappedStatement中。该对象包括:SQL语句、输入参数映射信息、输出结果集映射信息。其中输入参数和输出结果的映射类型包括java的简单类型、HashMap集合对象、POJO对象类型。</p>
<pre><code>>**Executor的功能和作用**
> 根据传递的参数,完成SQL语句的动态解析,生成BoundSql对象,供StatementHandler使用;
> 为查询创建缓存,以提高性能;
> 创建JDBC的Statement连接对象,传递给StatementHandler对象,返回List查询结果;
</code></pre></li>
</ol>
<hr>
<blockquote>
<p>参考:<a href="https://blog.csdn.net/qq_32166627/article/details/70741729" target="_blank" rel="noopener">https://blog.csdn.net/qq_32166627/article/details/70741729</a></p>
</blockquote>
<hr>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/04/16/2018041601/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/04/16/2018041601/" itemprop="url">Mybatis与JPA比较</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-04-16T10:09:03+08:00">
2018-04-16
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Mybatis与JPA比较"><a href="#Mybatis与JPA比较" class="headerlink" title="Mybatis与JPA比较"></a>Mybatis与JPA比较</h1><hr>
<h2 id="Mybatis"><a href="#Mybatis" class="headerlink" title="Mybatis"></a>Mybatis</h2><ul>
<li>需要在spring-boot的主类添加@MapperScan(“com.example.demo.dao”)</li>
<li>需要添加Mapper(Dao)接口,自定义所有的Dao方法以及使用注解或者xml添加对应方法的sql实现。</li>
<li>没有自动建表,需要手动建表。</li>
<li>配置application.properties连接数据库属性。</li>
</ul>
<h2 id="JPA"><a href="#JPA" class="headerlink" title="JPA"></a>JPA</h2><ul>
<li>需要在pojo类添加注解@Entity,pojo类对应的每个属性需要添加@Id或者@Column。</li>
<li>添加Repository(Dao)接口,需要实现JpaRepository接口,可以不写方法声明。</li>
<li>配置application.properties连接数据库属性。</li>
<li>可通过配置spring.jpa.properties.hibernate.hbm2ddl.auto=update属性实现自动建表。</li>
</ul>
<p><strong>总结</strong>:都需要添加Dao类,Mybatis的Dao类需要实现具体sql(注解或者xml),JPA不需要。对于pojo类的侵入性而言,Mybatis无需更改pojo类的任何地方,而JPA需要添加注解实现映射。</p>
<hr>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/04/13/2018041301/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/04/13/2018041301/" itemprop="url">分布式系统中的幂等性</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-04-13T09:21:52+08:00">
2018-04-13
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="分布式系统中的幂等性"><a href="#分布式系统中的幂等性" class="headerlink" title="分布式系统中的幂等性"></a>分布式系统中的幂等性</h1><p>现如今我们的系统大多拆分为分布式SOA(面向服务的架构),或者微服务,一套系统中包含了多个子系统服务,而一个子系统服务往往会去调用另一个服务,而服务调用服务无非就是使用RPC通信或者restful,既然是通信,那么就有可能再服务器处理完毕后返回结果的时候挂掉,这个时候用户端发现很久没有反应,那么就会多次点击按钮,这样请求有多次,那么处理数据的结果是否要统一呢?那是肯定的!尤其再支付场景。</p>
<hr>
<h2 id="幂等性"><a href="#幂等性" class="headerlink" title="幂等性"></a>幂等性</h2><p>就是用户对于同一操作发起的一次请求或者多次请求的结果是一致的,不会因为多次点击而产生了副作用。举个最简单的例子,那就是支付,用户购买商品使用约支付,支付扣款成功,但是返回结果的时候网络异常,此时钱已经扣了,用户再次点击按钮,此时会进行第二次扣款,返回结果成功,用户查询余额返发现多扣钱了,流水记录也变成了两条</p>
<h3 id="那么如何设计接口才能做到幂等呢?"><a href="#那么如何设计接口才能做到幂等呢?" class="headerlink" title="那么如何设计接口才能做到幂等呢?"></a>那么如何设计接口才能做到幂等呢?</h3><p> <strong>方法一:单次支付请求</strong><br> 也就是直接支付了,不需要额外的数据库操作了,这个时候发起异步请求创建一个唯一的ticketId,就是门票,这张门票只能使用一次就作废,具体步骤如下:</p>
<ol>
<li>异步请求获取门票</li>
<li>调用支付,传入门票</li>
<li>根据门票ID查询此次操作是否存在,如果存在则表示该操作已经执行过,直接返回结果;如果不存在,支付扣款,保存结果</li>
<li>返回结果到客户端</li>
</ol>
<p>如果步骤4通信失败,用户再次发起请求,那么最终结果还是一样的</p>
<p><strong>方法二:分布式环境下各个服务相互调用</strong><br>举例支付系统,我们支付的时候先要扣款,然后更新订单,这个地方就涉及到了订单服务以及支付服务了。<br>用户调用支付,扣款成功后,更新对应订单状态,然后再保存流水。<br>而在这个地方就没必要使用门票ticketId了,因为会比较显的麻烦(支付状态:未支付,已支付)步骤:</p>
<ol>
<li>查询订单支付状态</li>
<li>如果已经支付,直接返回结果</li>
<li>如果未支付,则支付扣款并且保存流水</li>
<li>返回支付结果</li>
</ol>
<p>如果步骤4通信失败,用户再次发起请求,那么最终结果还是一样的</p>
<p>注:幂等,也可以称之为冲正,保证客户端与服务端的交易一致性,避免多次扣款。</p>
<h2 id="参考:https-www-cnblogs-com-leechenxiang-p-6626629-html"><a href="#参考:https-www-cnblogs-com-leechenxiang-p-6626629-html" class="headerlink" title="参考:https://www.cnblogs.com/leechenxiang/p/6626629.html"></a>参考:<a href="https://www.cnblogs.com/leechenxiang/p/6626629.html" target="_blank" rel="noopener">https://www.cnblogs.com/leechenxiang/p/6626629.html</a></h2>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/04/09/2018040901/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/04/09/2018040901/" itemprop="url">Vue的双向数据绑定原理</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-04-09T15:12:34+08:00">
2018-04-09
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Vue的双向数据绑定原理"><a href="#Vue的双向数据绑定原理" class="headerlink" title="Vue的双向数据绑定原理"></a>Vue的双向数据绑定原理</h1><p>vue.js 是采用数据劫持结合发布者-订阅者模式的方式,通过Object.defineProperty()来劫持各个属性的setter,getter,在数据变动时发布消息给订阅者,触发相应的监听回调。</p>
<hr>
<h2 id="具体步骤:"><a href="#具体步骤:" class="headerlink" title="具体步骤:"></a>具体步骤:</h2><ol>
<li><p>需要observe的数据对象进行递归遍历,包括子属性对象的属性,都加上 setter和getter这样的话,给这个对象的某个值赋值,就会触发setter,那么就能监听到了数据变化</p>
</li>
<li><p>compile解析模板指令,将模板中的变量替换成数据,然后初始化渲染页面视图,并将每个指令对应的节点绑定更新函数,添加监听数据的订阅者,一旦数据有变动,收到通知,更新视图</p>
</li>
<li><p>Watcher订阅者是Observer和Compile之间通信的桥梁,主要做的事情是:</p>
<pre><code>> 在自身实例化时往属性订阅器(dep)里面添加自己
> 自身必须有一个update()方法
> 待属性变动dep.notice()通知时,能调用自身的update()方法,并触发Compile中绑定的回调,则功成身退。
</code></pre></li>
<li><p>MVVM作为数据绑定的入口,整合Observer、Compile和Watcher三者,通过Observer来监听自己的model数据变化,通过Compile来解析编译模板指令,最终利用Watcher搭起Observer和Compile之间的通信桥梁,达到数据变化 -> 视图更新;视图交互变化(input) -> 数据model变更的双向绑定效果。</p>
</li>
</ol>
<hr>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://jiangjihui.github.io/blog/blog/2018/03/21/apacheHTTPServer/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="xqlsrjjjh">
<meta itemprop="description" content="">
<meta itemprop="image" content="/blog/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="JJH-NoteBook">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/blog/2018/03/21/apacheHTTPServer/" itemprop="url">Apache HTTP Server</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-03-21T17:25:16+08:00">
2018-03-21
</time>
</span>
</div>
</header>