-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
951 lines (604 loc) · 35.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="즐거이 배우고 깊이 생각하라">
<title>즐거이 배우고 깊이 생각하라</title>
<meta name="author" content="hyunto">
<link rel="icon" href="https://hyunto.github.io/assets/images/favicon.ico">
<link rel="alternate" type="application/atom+xml" title="RSS" href="/atom.xml">
<script type="application/ld+json">{"@context":"http://schema.org","@type":"Website","@id":"https://hyunto.github.io","author":{"@type":"Person","name":"hyunto","sameAs":["https://github.com/hyunto","https://blog.naver.com/eqelizer","mailto:jhyunto@gmail.com"],"image":"author.jpg"},"name":"즐거이 배우고 깊이 생각하라","description":"즐거이 배우고 깊이 생각하라","url":"https://hyunto.github.io"}</script>
<meta name="description" content="즐거이 배우고 깊이 생각하라">
<meta property="og:type" content="blog">
<meta property="og:title" content="즐거이 배우고 깊이 생각하라">
<meta property="og:url" content="https://hyunto.github.io/index.html">
<meta property="og:site_name" content="즐거이 배우고 깊이 생각하라">
<meta property="og:description" content="즐거이 배우고 깊이 생각하라">
<meta property="og:locale" content="en">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="즐거이 배우고 깊이 생각하라">
<meta name="twitter:description" content="즐거이 배우고 깊이 생각하라">
<meta property="og:image" content="https://hyunto.github.io/assets/images/author.jpg">
<!--STYLES-->
<link rel="stylesheet" href="/assets/css/style-2dwn68oxrx7garnr65iriskewle1uhxjgd7vwi5ghcmktc2mzvq8clkrcp9l.min.css">
<!--STYLES END-->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-113695151-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="blog">
<!-- Define author's picture -->
<header id="header" data-behavior="2">
<i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i>
<div class="header-title">
<a class="header-title-link" href="/ ">즐거이 배우고 깊이 생각하라</a>
</div>
<a class="header-right-icon open-algoria-search" href="#about">
<i class="fa fa-lg fa-search"></i>
</a>
</header>
<!-- Define author's picture -->
<nav id="sidebar" data-behavior="2">
<div class="sidebar-container">
<div class="sidebar-profile">
<a href="/#about">
<img class="sidebar-profile-picture" src="/assets/images/author.jpg" alt="Author's picture">
</a>
<h4 class="sidebar-profile-name">hyunto</h4>
<h5 class="sidebar-profile-bio"><p>호학심사(好學深思)<br>즐거이 배우고 깊이 생각하라</p>
</h5>
</div>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="/ " title="Home">
<i class="sidebar-button-icon fa fa-home" aria-hidden="true"></i>
<span class="sidebar-button-desc">Home</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/all-categories" title="Categories">
<i class="sidebar-button-icon fa fa-bookmark" aria-hidden="true"></i>
<span class="sidebar-button-desc">Categories</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/all-tags" title="Tags">
<i class="sidebar-button-icon fa fa-tags" aria-hidden="true"></i>
<span class="sidebar-button-desc">Tags</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="/all-archives" title="Archives">
<i class="sidebar-button-icon fa fa-archive" aria-hidden="true"></i>
<span class="sidebar-button-desc">Archives</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link open-algolia-search" href="#search" title="Search">
<i class="sidebar-button-icon fa fa-search" aria-hidden="true"></i>
<span class="sidebar-button-desc">Search</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="#about" title="About">
<i class="sidebar-button-icon fa fa-question" aria-hidden="true"></i>
<span class="sidebar-button-desc">About</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://github.com/hyunto" target="_blank" rel="external nofollow noopener noreferrer" title="GitHub">
<i class="sidebar-button-icon fab fa-github" aria-hidden="true"></i>
<span class="sidebar-button-desc">GitHub</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="https://blog.naver.com/eqelizer" target="_blank" rel="external nofollow noopener noreferrer" title="Previous Blog">
<i class="sidebar-button-icon fas fa-paper-plane" aria-hidden="true"></i>
<span class="sidebar-button-desc">Previous Blog</span>
</a>
</li>
<li class="sidebar-button">
<a class="sidebar-button-link " href="mailto:jhyunto@gmail.com" target="_blank" rel="external nofollow noopener noreferrer" title="Mail">
<i class="sidebar-button-icon fa fa-envelope" aria-hidden="true"></i>
<span class="sidebar-button-desc">Mail</span>
</a>
</li>
</ul>
<ul class="sidebar-buttons">
<li class="sidebar-button">
<a class="sidebar-button-link " href="/atom.xml" title="RSS">
<i class="sidebar-button-icon fa fa-rss" aria-hidden="true"></i>
<span class="sidebar-button-desc">RSS</span>
</a>
</li>
</ul>
</div>
</nav>
<div id="main" data-behavior="2" class="
hasCoverMetaIn
">
<section class="postShorten-group main-content-wrap">
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2019/03/13/springframework-testing-private-method/">
Private 메소드 테스트하기
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-03-13T15:08:30+09:00">
Mar 13, 2019
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>단위 테스트 작성시 Private 접근자를 가진 메소드를 테스트하는 방법을 정리합니다.</p>
<a href="/2019/03/13/springframework-testing-private-method/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2019/02/17/java8-stream-practice/">
스트림(Stream) 활용
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-02-17T00:24:07+09:00">
Feb 17, 2019
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>Java8 Stream 활용 방안을 정리합니다.</p>
<a href="/2019/02/17/java8-stream-practice/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2019/02/12/java8-stream-basic/">
스트림(Stream) 소개
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-02-12T00:13:34+09:00">
Feb 12, 2019
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>Java8에서 새로 추가된 스트림의 기초를 정리합니다.</p>
<a href="/2019/02/12/java8-stream-basic/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2019/02/11/java8-lambda/">
람다 표현식 (Lambda Expression)
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-02-11T23:45:50+09:00">
Feb 11, 2019
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>Java8에서 새롭게 추가된 람다 표현식을 정리합니다.</p>
<a href="/2019/02/11/java8-lambda/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2019/01/15/introduction-to-oauth2.0/">
OAuth 2.0 - 기본개념 및 Authorization Grant
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2019-01-15T13:07:26+09:00">
Jan 15, 2019
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>최근 OAuth 2.0에 대해 공부하면서 다양한 Grant 종류가 존재함을 알게 되었습니다.<br>기본 개념과 Grant 종류에 대해 잘 정리되어 OAuth 2.0 이해에 도움됬던 사이트들의 내용을 정리합니다.</p>
<a href="/2019/01/15/introduction-to-oauth2.0/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2018/12/11/git-secret/">
git-secret
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2018-12-11T12:28:08+09:00">
Dec 11, 2018
</time>
<span>in </span>
<a class="category-link" href="/categories/Tool/">Tool</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>비밀번호, Secret Key 값과 같이 보호되야 하는 데이터가 포함된 파일을 그냥 Git Commit & Push 하면 개인적인 데이터가 노출되는 문제점이 발생합니다.</p>
<p><code>git-secret</code> 을 사용하면 개인적인 데이터가 포함된 파일을 암호화 한 후에 Git 저장소에 저장함으로써 문제점을 해결할 수 있습니다.</p>
<a href="/2018/12/11/git-secret/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2018/12/03/Java8-Behavior-Parameterization/">
동작 파라미터화 (Behavior Parameterization)
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2018-12-03T23:51:31+09:00">
Dec 03, 2018
</time>
<span>in </span>
<a class="category-link" href="/categories/Programming/">Programming</a>
</div>
</div>
<div class="postShorten-excerpt">
<p><code>동작 파라미터화 (Behavior Parameterization)</code> 는 “다양한 동작을 수행할 수 있는 코드 블럭을 메서드 파라미터로 전달”함으로써 자주 변경되는 요구사항에 효과적으로 대응할 수 있는 방식을 의미합니다.</p>
<p>여기서는 자주 변경되는 요구사항의 예시를 기반으로 동작 파라미터화를 한 후 Java8에서 추가된 Lambda로 코드를 간소화하는 과정을 보여줍니다.</p>
<a href="/2018/12/03/Java8-Behavior-Parameterization/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/">
[Book Review] 자바 ORM 표준 JPA 프로그래밍
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2018-11-16T08:30:23+09:00">
Nov 16, 2018
</time>
<span>in </span>
<a class="category-link" href="/categories/Book-Review/">Book Review</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>자바 ORM 표준 JPA 프로그래밍 (2015) 독서/스터디 후기</p>
<a href="/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
<a href="/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/">
<div class="postShorten-thumbnailimg">
<img alt="" src="https://hyunto.github.io/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/book_cover.png">
</div>
</a>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2018/07/27/자주-사용하는-Docker-명령어-정리/">
자주 사용하는 Docker 명령어 정리
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2018-07-27T13:29:19+09:00">
Jul 27, 2018
</time>
<span>in </span>
<a class="category-link" href="/categories/DevOps/">DevOps</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>업무 중 자주 사용되는 Docker CLI명령어와 Dockerfile 키워드를 정리합니다.<br>또한 업무중 겪었던 Docker 관련 이슈를 정리합니다.</p>
<a href="/2018/07/27/자주-사용하는-Docker-명령어-정리/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<article class="postShorten postShorten--thumbnailimg-right">
<div class="postShorten-wrap">
<div class="postShorten-header">
<h1 class="postShorten-title">
<a class="link-unstyled" href="/2018/07/26/Hexo-사용법/">
Hexo 사용법
</a>
</h1>
<div class="postShorten-meta">
<time datetime="2018-07-26T18:41:29+09:00">
Jul 26, 2018
</time>
<span>in </span>
<a class="category-link" href="/categories/Blog/">Blog</a>
</div>
</div>
<div class="postShorten-excerpt">
<p>2018년 초, Hexo를 사용해 이 블로그를 만들었으나 집, 회사 PC에서 블로그 Source를 다운받아 Deploy하는 과정에서 여러번 블로그를 망가뜨려 버렸습니다.<br>같은 실수를 반복하지 않기 위해 블로그 소스코드 다운, 빌드, 배포와 글을 작성하는 방법을 간단히 정리합니다.</p>
<a href="/2018/07/26/Hexo-사용법/" class="postShorten-excerpt_link link">
Continue reading
</a>
</div>
</div>
</article>
<div class="pagination-bar">
<ul class="pagination">
<li class="pagination-number">page 1 of 1</li>
</ul>
</div>
</section>
<footer id="footer" class="main-content-wrap">
<span class="copyrights">
Copyrights © 2019 hyunto. All Rights Reserved.
</span>
</footer>
</div>
</div>
<div id="about">
<div id="about-card">
<div id="about-btn-close">
<i class="fa fa-times"></i>
</div>
<img id="about-card-picture" src="/assets/images/author.jpg" alt="Author's picture">
<h4 id="about-card-name">hyunto</h4>
<div id="about-card-bio"><p>호학심사(好學深思)<br>즐거이 배우고 깊이 생각하라</p>
</div>
<div id="about-card-job">
<i class="fa fa-briefcase"></i>
<br>
<p>Software Engineer</p>
</div>
<div id="about-card-location">
<i class="fa fa-map-marker"></i>
<br>
Republic of Korea, Seoul
</div>
</div>
</div>
<div id="algolia-search-modal" class="modal-container">
<div class="modal">
<div class="modal-header">
<span class="close-button"><i class="fa fa-close"></i></span>
<a href="https://algolia.com" target="_blank" rel="external nofollow noopener noreferrer" class="searchby-algolia text-color-light link-unstyled">
<span class="searchby-algolia-text text-color-light text-small">by</span>
<img class="searchby-algolia-logo" src="https://www.algolia.com/static_assets/images/press/downloads/algolia-light.svg">
</a>
<i class="search-icon fa fa-search"></i>
<form id="algolia-search-form">
<input type="text" id="algolia-search-input" name="search" class="form-control input--large search-input" placeholder="Search ">
</form>
</div>
<div class="modal-body">
<div class="no-result text-color-light text-center">no post found</div>
<div class="results">
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2018/07/26/Hexo-사용법/">
<h3 class="media-heading">Hexo 사용법</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Jul 26, 2018
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>2018년 초, Hexo를 사용해 이 블로그를 만들었으나 집, 회사 PC에서 블로그 Source를 다운받아 Deploy하는 과정에서 여러번 블로그를 망가뜨려 버렸습니다.<br>같은 실수를 반복하지 않기 위해 블로그 소스코드 다운, 빌드, 배포와 글을 작성하는 방법을 간단히 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2018/07/27/자주-사용하는-Docker-명령어-정리/">
<h3 class="media-heading">자주 사용하는 Docker 명령어 정리</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Jul 27, 2018
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>업무 중 자주 사용되는 Docker CLI명령어와 Dockerfile 키워드를 정리합니다.<br>또한 업무중 겪었던 Docker 관련 이슈를 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-left">
<a class="link-unstyled" href="https://hyunto.github.io/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/">
<img class="media-image" src="https://hyunto.github.io/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/book_cover.png" width="90" height="90">
</a>
</div>
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2018/11/16/Book-Review-자바-ORM-표준-JPA-프로그래밍/">
<h3 class="media-heading">[Book Review] 자바 ORM 표준 JPA 프로그래밍</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Nov 16, 2018
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>자바 ORM 표준 JPA 프로그래밍 (2015) 독서/스터디 후기</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2018/12/03/Java8-Behavior-Parameterization/">
<h3 class="media-heading">동작 파라미터화 (Behavior Parameterization)</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Dec 3, 2018
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p><code>동작 파라미터화 (Behavior Parameterization)</code> 는 “다양한 동작을 수행할 수 있는 코드 블럭을 메서드 파라미터로 전달”함으로써 자주 변경되는 요구사항에 효과적으로 대응할 수 있는 방식을 의미합니다.</p>
<p>여기서는 자주 변경되는 요구사항의 예시를 기반으로 동작 파라미터화를 한 후 Java8에서 추가된 Lambda로 코드를 간소화하는 과정을 보여줍니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2018/12/11/git-secret/">
<h3 class="media-heading">git-secret</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Dec 11, 2018
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>비밀번호, Secret Key 값과 같이 보호되야 하는 데이터가 포함된 파일을 그냥 Git Commit & Push 하면 개인적인 데이터가 노출되는 문제점이 발생합니다.</p>
<p><code>git-secret</code> 을 사용하면 개인적인 데이터가 포함된 파일을 암호화 한 후에 Git 저장소에 저장함으로써 문제점을 해결할 수 있습니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2019/01/15/introduction-to-oauth2.0/">
<h3 class="media-heading">OAuth 2.0 - 기본개념 및 Authorization Grant</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Jan 15, 2019
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>최근 OAuth 2.0에 대해 공부하면서 다양한 Grant 종류가 존재함을 알게 되었습니다.<br>기본 개념과 Grant 종류에 대해 잘 정리되어 OAuth 2.0 이해에 도움됬던 사이트들의 내용을 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2019/02/11/java8-lambda/">
<h3 class="media-heading">람다 표현식 (Lambda Expression)</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Feb 11, 2019
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Java8에서 새롭게 추가된 람다 표현식을 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2019/02/12/java8-stream-basic/">
<h3 class="media-heading">스트림(Stream) 소개</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Feb 12, 2019
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Java8에서 새로 추가된 스트림의 기초를 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2019/02/17/java8-stream-practice/">
<h3 class="media-heading">스트림(Stream) 활용</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Feb 17, 2019
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>Java8 Stream 활용 방안을 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
<div class="media">
<div class="media-body">
<a class="link-unstyled" href="https://hyunto.github.io/2019/03/13/springframework-testing-private-method/">
<h3 class="media-heading">Private 메소드 테스트하기</h3>
</a>
<span class="media-meta">
<span class="media-date text-small">
Mar 13, 2019
</span>
</span>
<div class="media-content hide-xs font-merryweather"><p>단위 테스트 작성시 Private 접근자를 가진 메소드를 테스트하는 방법을 정리합니다.</p></div>
</div>
<div style="clear:both;"></div>
<hr>
</div>
</div>
</div>
<div class="modal-footer">
<p class="results-count text-medium" data-message-zero="no post found" data-message-one="1 post found" data-message-other="{n} posts found">
10 posts found
</p>
</div>
</div>
</div>
<div id="cover" style="background-image:url('/assets/images/cover_the_legend_of_zelda.jpg');"></div>
<!--SCRIPTS-->
<script src="/assets/js/script-x2vft4khydnm3fle5k6i00lpg0w2a1yxes6bmk6mdnvmeqzmtipaw6lhf8rx.min.js"></script>
<!--SCRIPTS END-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment-with-locales.min.js"></script>
<script src="//cdn.jsdelivr.net/algoliasearch/3/algoliasearch.min.js"></script>
<script>
var algoliaClient = algoliasearch('XKYZJU6GUU', '6f712de882b0c14f1ba276f5970d1d44');
var algoliaIndex = algoliaClient.initIndex('hyunto.github.io');
</script>
</body>
</html>