-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1590 lines (1440 loc) · 66.5 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 lang="zh-CN">
<!-- title -->
<!-- keywords -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="f10@t">
<meta name="renderer" content="webkit">
<meta name="copyright" content="f10@t">
<meta name="keywords" content="lzwgiter,f10@t's blog">
<meta name="description" content="blogs by f10@t">
<meta name="description" content="blogs by f10@t">
<meta property="og:type" content="website">
<meta property="og:title" content="f10@t's blog">
<meta property="og:url" content="https://lzwgiter.github.io/index.html">
<meta property="og:site_name" content="f10@t's blog">
<meta property="og:description" content="blogs by f10@t">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="f10@t">
<meta name="twitter:card" content="summary">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="icon" href="/assets/hello.svg">
<title>f10@t's blog</title>
<!-- /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
/* This file is meant as a standalone workflow for
- testing support for link[rel=preload]
- enabling async CSS loading in browsers that do not support rel=preload
- applying rel preload css once loaded, whether supported or not.
*/ -->
<script>
(function (w) {
'use strict'
// rel=preload support test
if (!w.loadCSS) {
w.loadCSS = function () {}
}
// define on the loadCSS obj
var rp = (loadCSS.relpreload = {})
// rel=preload feature support test
// runs once and returns a function for compat purposes
rp.support = (function () {
var ret
try {
ret = w.document.createElement('link').relList.supports('preload')
} catch (e) {
ret = false
}
return function () {
return ret
}
})()
// if preload isn't supported, get an asynchronous load by using a non-matching media attribute
// then change that media back to its intended value on load
rp.bindMediaToggle = function (link) {
// remember existing media attr for ultimate state, or default to 'all'
var finalMedia = link.media || 'all'
function enableStylesheet() {
link.media = finalMedia
}
// bind load handlers to enable media
if (link.addEventListener) {
link.addEventListener('load', enableStylesheet)
} else if (link.attachEvent) {
link.attachEvent('onload', enableStylesheet)
}
// Set rel and non-applicable media type to start an async request
// note: timeout allows this to happen async to let rendering continue in IE
setTimeout(function () {
link.rel = 'stylesheet'
link.media = 'only x'
})
// also enable media after 3 seconds,
// which will catch very old browsers (android 2.x, old firefox) that don't support onload on link
setTimeout(enableStylesheet, 3000)
}
// loop through link elements in DOM
rp.poly = function () {
// double check this to prevent external calls from running
if (rp.support()) {
return
}
var links = w.document.getElementsByTagName('link')
for (var i = 0; i < links.length; i++) {
var link = links[i]
// qualify links to those with rel=preload and as=style attrs
if (
link.rel === 'preload' &&
link.getAttribute('as') === 'style' &&
!link.getAttribute('data-loadcss')
) {
// prevent rerunning on link
link.setAttribute('data-loadcss', true)
// bind listeners to toggle media back
rp.bindMediaToggle(link)
}
}
}
// if unsupported, run the polyfill
if (!rp.support()) {
// run once at least
rp.poly()
// rerun poly on an interval until onload
var run = w.setInterval(rp.poly, 500)
if (w.addEventListener) {
w.addEventListener('load', function () {
rp.poly()
w.clearInterval(run)
})
} else if (w.attachEvent) {
w.attachEvent('onload', function () {
rp.poly()
w.clearInterval(run)
})
}
}
// commonjs
if (typeof exports !== 'undefined') {
exports.loadCSS = loadCSS
} else {
w.loadCSS = loadCSS
}
})(typeof global !== 'undefined' ? global : this)
</script>
<style type="text/css">
@font-face {
font-family: 'Oswald-Regular';
src: url("/font/Oswald-Regular.ttf");
}
body {
margin: 0;
}
header,
footer,
.footer-fixed-btn,
.sidebar,
.container,
.site-intro-meta,
.toc-wrapper {
display: none;
}
.site-intro {
position: relative;
z-index: 3;
width: 100%;
/* height: 50vh; */
overflow: hidden;
}
.site-intro-placeholder {
position: absolute;
z-index: -2;
top: 0;
left: 0;
width: calc(100% + 300px);
height: 100%;
background: repeating-linear-gradient(
-45deg,
#444 0,
#444 80px,
#333 80px,
#333 160px
);
background-position: center center;
transform: translate3d(-226px, 0, 0);
animation: gradient-move 2.5s ease-out 0s infinite;
}
@keyframes gradient-move {
0% {
transform: translate3d(-226px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</style>
<link id="stylesheet-fancybox" rel="preload" href="https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/fancybox/fancybox.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link id="stylesheet-base" rel="preload" href="/css/style.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link id="stylesheet-mobile" rel="preload" href="/css/mobile.css" as="style" onload="this.onload=null;this.rel='stylesheet';this.media='screen and (max-width: 960px)'">
<link id="stylesheet-theme-dark" rel="preload" href="/css/dark.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="preload" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" as="script">
<link rel="preload" href="/scripts/main.js" as="script">
<link rel="preload" href="/font/Oswald-Regular.ttf" as="font" crossorigin>
<link rel="preload" href="https://at.alicdn.com/t/font_327081_1dta1rlogw17zaor.woff" as="font" crossorigin>
<!-- algolia -->
<script>
var hits = JSON.parse('{"per_page":10}')
var labels = JSON.parse('{"input_placeholder":"搜索文章相关内容","hits_empty":"${query}搜索结果为空: ","hits_stats":"找到结果${hits}条,用时${time} ms"}')
var algolia = {
applicationID: 'M469ZFXTNU',
apiKey: '32b991ddc2b9f92be99f0e241d0f12d4',
indexName: 'blog_indices',
hits: hits,
labels: labels
}
</script>
<!-- 百度统计 -->
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?9ef67111f9ae4eefa278780655f0c1e3";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!-- 谷歌统计 -->
<!-- Google tag (gtag.js) -->
<meta name="generator" content="Hexo 6.3.0"><link rel="alternate" href="/atom.xml" title="f10@t's blog" type="application/atom+xml">
</head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script type="text/javascript">
if (typeof window.$ == undefined) {
console.warn('jquery load from jsdelivr failed, will load local script')
document.write('<script src="/lib/jquery.min.js" />')
}
</script>
<body class="home-body">
<!-- header -->
<header class="header header-mobile index-header">
<!-- top read progress line -->
<div class="header-element">
<div class="read-progress read-progress-feature"></div>
</div>
<!-- sidebar menu button -->
<div class="header-element">
<div class="header-sidebar-menu header-sidebar-menu-rounded">
<i class="fas fa-bars"></i>
</div>
</div>
<!-- header actions -->
<div class="header-actions">
<!-- theme mode switch button -->
<span class="header-theme-btn header-element">
<i class="fas fa-adjust"></i>
</span>
<!-- back to home page text -->
<span class="home-link header-element">
<a href="/">f10@t's blog</a>
</span>
</div>
<!-- toggle banner -->
<div class="banner">
<div class="blog-title header-element">
<a href="/">f10@t's blog</a>
</div>
<div class="post-title header-element">
<a href="#" class="post-name"></a>
</div>
</div>
</header>
<!-- fixed footer -->
<footer class="footer-fixed index-footer-fixed">
<!-- donate button -->
<!-- back to top button -->
<div class="footer-fixed-btn footer-fixed-btn--hidden footer-fixed-btn--rounded back-top">
<i class="fas fa-chevron-up"></i>
</div>
</footer>
<!-- wrapper -->
<div class="wrapper">
<div class="site-intro" style=" height:50vh;
">
<!-- 主页 -->
<!-- 文章页 -->
<div class="site-intro-placeholder"></div>
<div class="site-intro-img" style="background-image: url(/intro/wodian.jpg)"></div>
<div class="site-intro-meta">
<!-- 标题 -->
<h1 class="intro-title">
<!-- 主页 -->
f10@t's blog
<!-- 文章页 -->
</h1>
<!-- 副标题 -->
<p class="intro-subtitle">
<!-- 主页副标题 -->
St@y HuNgRy, St@y f00l1sh.
<!-- 文章页 -->
</p>
<!-- 文章页 meta -->
</div>
</div>
<script>
// get user agent
function getBrowserVersions() {
var u = window.navigator.userAgent
return {
userAgent: u,
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者安卓QQ浏览器
iPad: u.indexOf('iPad') > -1, //是否为iPad
webApp: u.indexOf('Safari') == -1, //是否为web应用程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') == -1, //是否为微信浏览器
uc: u.indexOf('UCBrowser') > -1, //是否为android下的UC浏览器
}
}
var browser = {
versions: getBrowserVersions(),
}
console.log('userAgent: ' + browser.versions.userAgent)
// callback
function fontLoaded() {
console.log('font loaded')
if (document.getElementsByClassName('site-intro-meta')) {
document
.getElementsByClassName('intro-title')[0]
.classList.add('intro-fade-in')
document
.getElementsByClassName('intro-subtitle')[0]
.classList.add('intro-fade-in')
var postIntros = document.getElementsByClassName('post-intros')[0]
if (postIntros) {
postIntros.classList.add('post-fade-in')
}
}
}
// UC不支持跨域,所以直接显示
function asyncCb() {
if (browser.versions.uc) {
console.log('UCBrowser')
fontLoaded()
} else {
WebFont.load({
custom: {
families: ['Oswald-Regular'],
},
loading: function () {
// 所有字体开始加载
// console.log('font loading');
},
active: function () {
// 所有字体已渲染
fontLoaded()
},
inactive: function () {
// 字体预加载失败,无效字体或浏览器不支持加载
console.log('inactive: timeout')
fontLoaded()
},
timeout: 5000, // Set the timeout to two seconds
})
}
}
function asyncErr() {
console.warn('script load from CDN failed, will load local script')
}
// load webfont-loader async, and add callback function
function async(u, cb, err) {
var d = document,
t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0]
o.src = u
if (cb) {
o.addEventListener(
'load',
function (e) {
cb(null, e)
},
false
)
}
if (err) {
o.addEventListener(
'error',
function (e) {
err(null, e)
},
false
)
}
s.parentNode.insertBefore(o, s)
}
var asyncLoadWithFallBack = function (arr, success, reject) {
var currReject = function () {
reject()
arr.shift()
if (arr.length) async(arr[0], success, currReject)
}
async(arr[0], success, currReject)
}
asyncLoadWithFallBack(
[
'https://cdn.jsdelivr.net/npm/[email protected]/webfontloader.min.js',
'https://cdn.bootcss.com/webfont/1.6.28/webfontloader.js',
"/lib/webfontloader.min.js",
],
asyncCb,
asyncErr
)
</script>
<img class="loading" src="/assets/loading.svg" style="display: block; margin: 6rem auto 0 auto; width: 6rem; height: 6rem;" alt="loading">
<div class="container container-unloaded">
<main class="main index-page">
<article class="index-post">
<a class="abstract-title" href="/posts/a212a999/">
<span class="abstract-title-text">SpringCloud Config Server使用及全自动配置热更新</span>
</a>
<div class="abstract-content">
<blockquote>
<p>本篇记录Spring Config Server配置管理方案中、基于git
webhook和rabbitmq实现配置的实时热更新,无需重启应用。</p>
<p>对于服务较少的类型,其实可以通过手动发送post请求到指定应用的端口从而实现手动触发配置更新,但是在应用数量众多、环境profile较多、配置服务器不止一个的情况下,上述方法就较为低效了。因此,可以通过使用SpringCloud
Config
Server方案。(本篇没有讨论与nacos、consul的对比,若也有疑问可以参考<a
target="_blank" rel="noopener" href="https://www.cnblogs.com/hanease/p/16227790.html">Nacos、Apollo、SpringCloud
Config微服务配置中心对比 - hanease - 博客园 (cnblogs.com)</a>)</p>
<ul>
<li>基于git对配置文件进行管理,使用{应用名}-{profile}方式实现隔离管理;</li>
<li>基于git webhook异步回调触发配置更新;</li>
<li>基于SpringCloud
Bus、AMQP协议实现待更新的微服务应用从配置服务器处接收更新;</li>
</ul>
<figure>
<img
src="/img/SpringCloud%20Config%20Server使用及全自动配置热更新/6113f7f6233a7cbfed683631be91b03.jpg"
alt="前段时间拍的石泉县后柳水乡,风景真的很好" />
<figcaption
aria-hidden="true">前段时间拍的石泉县后柳水乡,风景真的很好</figcaption>
</figure>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/10/16">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/09/30</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="开发技术">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
开发技术
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="Java">Java</a>
<a class="post-tag" href="javascript:void(0);" data-tags="分布式技术">分布式技术</a>
<a class="post-tag" href="javascript:void(0);" data-tags="Spring">Spring</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/54e979b4/">
<span class="abstract-title-text">RabbitMQ学习</span>
</a>
<div class="abstract-content">
<blockquote>
<p>这篇复习&记录一下RabbitMQ。作为广泛使用的开源消息中间件的一种,RabbitMQ具有相较于kafka更丰富的消息推送模式(如自定义消息路由规则),此外,RabbitMQ也支持AMQP、MQTT、STOMP通用性开源消息协议以及如JMS的特定语言协议。</p>
<p>关于消息系统推荐一本国外著作:《Enterprise Integration Patterns :
Designing, Building And Deploying Messaging
Solutions》(《企业集成模式——设计、构建及部署消息传递解决方案》),书中以基于消息中间件的异步消息传递模型,给出了集成企业级应用的思路和模式(如书中定义使用命令消息和文档消息构建RPC给我留下了很深的印象)。</p>
<figure>
<img src="/img/RabbitMQ学习/1722863315080.jpg"
alt="新学的峨眉酒家版本的宫保鸡丁很好吃啊!" />
<figcaption
aria-hidden="true">新学的峨眉酒家版本的宫保鸡丁很好吃啊!</figcaption>
</figure>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/08/25">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/08/05</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="开发技术">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
开发技术
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="开发技术">开发技术</a>
<a class="post-tag" href="javascript:void(0);" data-tags="分布式技术">分布式技术</a>
<a class="post-tag" href="javascript:void(0);" data-tags="微服务技术">微服务技术</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/963fb8d3/">
<span class="abstract-title-text">领域驱动设计学习(一)</span>
</a>
<div class="abstract-content">
<blockquote>
<blockquote>
<p>"<em>Domain-Driven Design is an approach to software development that
centers the development on programming a domain model that has a rich
understanding of the processes and rules of a domain. ....... The
approach is particularly suited to complex domains, where a lot of
often-messy logic needs to be organized.</em>"——<a
target="_blank" rel="noopener" href="https://martinfowler.com/bliki/DomainDrivenDesign.html"
title="Domain Driven Design (martinfowler.com)">Martin Fowler</a></p>
</blockquote>
<p>最近阅读了郑天民的<a
target="_blank" rel="noopener" href="https://product.dangdang.com/11676757444.html"
title="《DDD工程实战:从零构建企业级DDD应用》">《DDD工程实战:从零构建企业级DDD应用》</a>,相较于一些直译本,个人感觉更加易懂。了解了DDD方法的思想、概念和优势,打破了我一直以来对于Java后端开发,特别是微服务开发时的一些固念。感兴趣的伙伴可以阅读Martin
Fowler的相关博客或者这本书。(喜欢好友家乡的甏肉干饭白)</p>
<p><img src="/img/领域驱动设计学习(一)/58b6617915180e558b39a314eec4b6b.jpg" /></p>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/11/16">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/04/23</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="开发技术">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
开发技术
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="Java">Java</a>
<a class="post-tag" href="javascript:void(0);" data-tags="开发技术">开发技术</a>
<a class="post-tag" href="javascript:void(0);" data-tags="微服务技术">微服务技术</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/21f893eb/">
<span class="abstract-title-text">学鲁菜之酱焖鲈鱼</span>
</a>
<div class="abstract-content">
<blockquote>
<p><img src="/img/学鲁菜之酱焖鲈鱼/image-20240211111343954.png" /></p>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/07/24">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2024/02/06</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<a class="post-tag" href="javascript:void(0);" data-tags="日常">日常</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/33ea2108/">
<span class="abstract-title-text">Spring AOP再探</span>
</a>
<div class="abstract-content">
<blockquote>
<p>在学习Spring Framework的时候接触过AOP的相关内容—><a
target="_blank" rel="noopener" href="https://www.f10at.cn/posts/a9e6a25b.html">Spring基础学习 - AOP机制
· f10@t's blog (f10at.cn)</a>。</p>
<p>但是当时没有记录使用注解的方式,且仅学习了<em>Advisor</em>没有了解其与<em>Aspect</em>的联系和区别,遂补一个坑。</p>
<figure>
<img src="/img/Spring-AOP再探/1697977881563.jpg"
alt="喜欢我昆明池吗?" />
<figcaption aria-hidden="true">喜欢我昆明池吗?</figcaption>
</figure>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/04/15">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/10/22</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="开发技术">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
开发技术
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="Java">Java</a>
<a class="post-tag" href="javascript:void(0);" data-tags="Spring">Spring</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/c41813ec/">
<span class="abstract-title-text">重新审视微服务</span>
</a>
<div class="abstract-content">
<blockquote>
<p>曾写过一篇文章<a
href="https://lzwgiter.github.io/posts/662e1cfe.html">"微服务入门-5W和微服务思想"</a>,想要搞清楚微服务是什么?来源?作用?微服务架构本质上是<strong>分布式架构</strong>,这方面我没有经验或理论基础,因此对微服务技术本身的目的和体系也是一知半解。</p>
<p>最近阅读了一本22年的书《分布式系统架构与开发》,作者是郑天民。基于该书的内容重新整理关于一下微服务技术及其生态的"思维导图"。</p>
<p><img src="/img/重新审视微服务/shanqiu.png" style="zoom:70%;" /></p>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/07/24">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/10/09</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="开发技术">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
开发技术
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="开发技术">开发技术</a>
<a class="post-tag" href="javascript:void(0);" data-tags="微服务技术">微服务技术</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<article class="index-post">
<a class="abstract-title" href="/posts/85bf5302/">
<span class="abstract-title-text">K8s攻防之OWASP-K8S-TOP10(下)</span>
</a>
<div class="abstract-content">
<blockquote>
<p>紧接<a
target="_blank" rel="noopener" href="https://www.f10at.cn/posts/8aa36aba.html">上一篇</a>,继续学习剩下的漏洞类型。(ps:上一次的环境有一些问题,我重新用ubuntu20搭建了。如果也有学习这块但嫌环境麻烦的小伙伴,可以私信我要虚拟机,联系方式见头像下方,一起学习和讨论。</p>
<p>剩下的K5-K10主要是开发人员在k8s网络配置、资源配置文件、开发程序打包时存在的一些<strong>配置问题</strong>。</p>
<p><img src="/img/K8s攻防之OWASP-K8S-TOP10(上)/image-20230917222234007.png" style="zoom:60%;" /></p>
</blockquote>
</div>
<!-- read more -->
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date" title="Last updated: 2024/07/24">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2023/10/04</span>
</div>
<!-- tags -->
<div class="abstract-tags" >
<span class="post-category" data-categories="云安全">
<i class="fas fa-folder post-category-icon"></i>
<span class="post-category-text">
云安全
</span>
</span>
<a class="post-tag" href="javascript:void(0);" data-tags="Kubernete">Kubernete</a>
<a class="post-tag" href="javascript:void(0);" data-tags="云安全">云安全</a>
</div>
</div>
</article>
<div class="index-post-divider"></div>
<!-- paginator -->
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><span class="space">…</span><a class="page-number" href="/page/15/">15</a><a class="extend next" rel="next" href="/page/2/">NEXT ></a>
</nav>
</main>
<!-- profile -->
<div class="profile profile-sticky">
<img class="profile-avatar" alt="avatar" src="/avatar/avatar.jpg" >
<div class="profile-name">lzwgiter</div>
<div class="profile-signature">
看清自己,认识世界
</div>
<div class="profile-social">
<a href="//github.com/lzwgiter" class="iconfont-archer github" target="_blank" title="github"></a>
</div>
<div class="friends">
<div>
<i class="fas fa-heart profile-item-icon"></i>
FRIENDS
</div>
<span>
<a href="//blank-vax.github.io/" target="_blank">B1ank</a>
</span>
<span>
<a href="//k1ng0fic3.github.io/" target="_blank">冰皇</a>
</span>
<span>
<a href="//blog.d4y1ight.xyz/" target="_blank">flight</a>
</span>
<span>
<a href="//doubler.cn/" target="_blank">Double-R</a>
</span>
<span>
<a href="//llfam.cn/" target="_blank">llfam</a>
</span>
<span>
<a href="//www.cnblogs.com/soowin/" target="_blank">soowin</a>
</span>
<span>
<a href="//www.cnblogs.com/wangstudyblog/" target="_blank">刚刚好</a>
</span>
<span>
<a href="//drun1baby.top/" target="_blank">Drunkbaby</a>
</span>
<span>
<a href="//forensics.xidian.edu.cn/wiki/" target="_blank">XDForensics-wiki</a>
</span>
</div>
<div class="profile-link-item">
<a href="/about" class="about-me">
<i class="fas fa-id-card profile-item-icon"></i>
ABOUT ME
</a>
</div>
</div>
</div>
<footer class="footer footer-unloaded">
<!-- social -->
<div class="social">
<a href="//github.com/lzwgiter" class="iconfont-archer github" target="_blank" title="github"></a>
</div>
<!-- powered by Hexo -->
<div class="copyright">
<span id="hexo-power">Powered by <a href="https://hexo.io/" target="_blank">Hexo</a></span><span class="iconfont-archer power"></span><span id="theme-info">theme <a href="https://github.com/fi3ework/hexo-theme-archer" target="_blank">Archer</a></span>
</div>
<!-- website approve for Chinese user -->
<!-- 不蒜子 -->
<div class="busuanzi-container">
<span id="busuanzi_container_site_uv">做客的小伙伴数: <span id="busuanzi_value_site_uv"></span></span>
</div>
</footer>
</div>
<!-- toc -->
<!-- sidebar -->
<div class="sidebar sidebar-hide">
<ul class="sidebar-tabs sidebar-tabs-active-0">
<li class="sidebar-tab-archives"><span class="iconfont-archer"></span><span class="tab-name">Archive</span></li>
<li class="sidebar-tab-tags"><span class="iconfont-archer"></span><span class="tab-name">Tag</span></li>
<li class="sidebar-tab-categories"><span class="iconfont-archer"></span><span class="tab-name">Cate</span></li>
</ul>
<div class="sidebar-content sidebar-content-show-archive">
<div class="sidebar-panel-archives">
<!-- 在 ejs 中将 archive 按照时间排序 -->
<div class="total-and-search">
<div class="total-archive">
Total : 101
</div>
<!-- search -->
<div class="site-search site-search-loading popup-trigger">
<span class="iconfont-archer search-icon"></span>
</div>
</div>
<div class="post-archive">
<div class="archive-year"> 2024 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">09/30</span>
<a class="archive-post-title" href="/posts/a212a999/">SpringCloud Config Server使用及全自动配置热更新</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/05</span>
<a class="archive-post-title" href="/posts/54e979b4/">RabbitMQ学习</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">04/23</span>
<a class="archive-post-title" href="/posts/963fb8d3/">领域驱动设计学习(一)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">02/06</span>
<a class="archive-post-title" href="/posts/21f893eb/">学鲁菜之酱焖鲈鱼</a>
</li>
</ul>
<div class="archive-year"> 2023 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">10/22</span>
<a class="archive-post-title" href="/posts/33ea2108/">Spring AOP再探</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">10/09</span>
<a class="archive-post-title" href="/posts/c41813ec/">重新审视微服务</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">10/04</span>
<a class="archive-post-title" href="/posts/85bf5302/">K8s攻防之OWASP-K8S-TOP10(下)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">09/16</span>
<a class="archive-post-title" href="/posts/8aa36aba/">K8s攻防之OWASP-K8S-TOP10(上)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/08</span>
<a class="archive-post-title" href="/posts/c16d1cd9/">Java内存马原理(一)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">07/08</span>
<a class="archive-post-title" href="/posts/e2947908/">Java Instrument机制及管窥IAST</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">07/03</span>
<a class="archive-post-title" href="/posts/479daa6d/">gRPC简介与使用</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">04/30</span>
<a class="archive-post-title" href="/posts/b74b8800/">fastjson反序列化漏洞学习(二)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">03/21</span>
<a class="archive-post-title" href="/posts/4ebd8c48/">Java多线程编程Review</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">01/07</span>
<a class="archive-post-title" href="/posts/73d00ee7/">Netty框架学习</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">01/04</span>
<a class="archive-post-title" href="/posts/d6b305b7/">Java网络编程模型复习</a>
</li>
</ul>
<div class="archive-year"> 2022 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">04/26</span>
<a class="archive-post-title" href="/posts/203767b8/">python-Numpy库使用</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">01/20</span>
<a class="archive-post-title" href="/posts/f06096b/">MATLAB - Wireless Communication Onramp</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">01/19</span>
<a class="archive-post-title" href="/posts/3041f265/">Matlab编程基础</a>
</li>
</ul>
<div class="archive-year"> 2021 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">10/04</span>
<a class="archive-post-title" href="/posts/169c63d0/">Bloom Filter概念原理</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/25</span>
<a class="archive-post-title" href="/posts/85e98ef0/">zk-SNARKs简洁的非交互式零知识证明学习(一)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/22</span>
<a class="archive-post-title" href="/posts/a8e0eb2d/">Quarkus学习(一)概述以及编写REST服务</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/19</span>
<a class="archive-post-title" href="/posts/e88577c0/">Cloud Programming Simplified:A Berkeley View on Serverless Computing</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/18</span>
<a class="archive-post-title" href="/posts/99665dc1/">闲聊一下Java中的DI和CDI</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/12</span>
<a class="archive-post-title" href="/posts/ed901271/">Kubernetes-集群环境搭建使用及问题记录(三)</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">08/09</span>
<a class="archive-post-title" href="/posts/a08eb123/">Kubernetes-集群环境搭建使用及问题记录(二)</a>