-
Notifications
You must be signed in to change notification settings - Fork 0
/
backend.html
1385 lines (1303 loc) · 50.3 KB
/
backend.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="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<section class="group group--tools" id="betools">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i
>Development tools
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.eclipse.org/"
>Eclipe</a
>
</h3>
<p class="resource__text">
The Eclipse Foundation provides our global community of
individuals and organizations with a mature, scalable, and
business-friendly environment for open source software
collaboration and innovation.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.jetbrains.com/idea/download/#section=windows "
>Intellij</a
>
</h3>
<p class="resource__text">
Java IDE, using RunAsDate tool we can use any paid or enterprise
tool of trial version forever. Lets say we are installing Intellij
IDE for 30 days trail version which will ideal expire after 30
days using system date but using this utility we can create a
shortcut for that using a date of next installing date and it will
always use that date and never expire.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.putty.org/ "
>Putty
</a>
</h3>
<p class="resource__text">
Connect unix server from windows (PuTTY is an SSH and telnet
client)
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://ttssh2.osdn.jp/index.html.en "
>Teraterm
</a>
</h3>
<p class="resource__text">
Same like putty to connect unix server from windows PuTTY is an
SSH and telnet client
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://winscp.net/eng/download.php "
>WinSCP
</a>
</h3>
<p class="resource__text">
WinSCP is an open source free SFTP client, FTP client, WebDAV
client, S3 client and SCP client for Windows. Its main function is
file transfer between a local and a remote computer
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://filezilla-project.org/index.php"
>FileZilla
</a>
</h3>
<p class="resource__text">
The FileZilla Client not only supports FTP, but also FTP over TLS
(FTPS) and SFTP.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.bmc.com/it-solutions/control-m.html"
>Control-M
</a>
</h3>
<p class="resource__text">
Control-M simplifies application and data workflow orchestration
on premises or as a service. It makes it easy to build, define,
schedule, manage, and monitor production workflows, ensuring
visibility, reliability, and improving SLAs. Website
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="http://java-decompiler.github.io/"
>Java Decompiler
</a>
</h3>
<p class="resource__text">
JD-GUI is a standalone graphical utility that displays Java source
codes of “.class” files. website
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://glowroot.org/"
>Glowroot
</a>
</h3>
<p class="resource__text">
Glowroot helps you get to the root of java application performance
issues
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.soapui.org/downloads/soapui/"
>SOAP UI
</a>
</h3>
<p class="resource__text">
Get the most advanced functional testing tool for REST, SOAP and
GraphQL APIs
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.postman.com/product/what-is-postman/"
>Postman
</a>
</h3>
<p class="resource__text">
Postman is an API platform for building and using APIs. Postman
simplifies each step of the API lifecycle and streamlines
collaboration so you can create better APIs
</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="beunittesting">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Testing Technology and tools
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://junit.org/junit5/docs/current/user-guide/"
>Junit</a
>
</h3>
<p class="resource__text">
JUnit 5 =JUnit Platform + JUnit Jupiter + JUnit Vintage
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://testng.org/doc/"
>TestNG
</a>
</h3>
<p class="resource__text">
a testing framework inspired from JUnit and NUnit but introducing
some new functionalities that make it more powerful and easier to
use
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://site.mockito.org/"
>Mockito
</a>
</h3>
<p class="resource__text">
Tasty mocking framework for unit tests in Java
</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="becodecoverage">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Code Coverage Tools
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.eclemma.org/jacoco/"
>JaCoCo</a
>
</h3>
<p class="resource__text">
Retrieving data. Wait a few seconds and try to cut or copy again.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://testng.org/doc/"
>TestNG
</a>
</h3>
<p class="resource__text">
a testing framework inspired from JUnit and NUnit but introducing
some new functionalities that make it more powerful and easier to
use
</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="beloggingframwork">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Logging Framworks
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://logging.apache.org/log4j/2.x/manual/layouts.html"
>Log4j/Log4j 2</a
>
</h3>
<p class="resource__text">
Apache Log4j is an open-source Java-based logging utility
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a target="_blank" class="resource__link" href="">SLF4J </a>
</h3>
<p class="resource__text">
It stands for Simple Logging Facade for Java (SLF4J). It is an
abstraction layer for multiple logging frameworks such as Log4j,
Logback, and java.util.logging.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a target="_blank" class="resource__link" href="">Logback </a>
</h3>
<p class="resource__text">
It is an open-source project designed as a successor to Log4j
version 1 before Log4j version 2 was released.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a target="_blank" class="resource__link" href="">tinylog </a>
</h3>
<p class="resource__text">
it is a light weighted and open-source logger.
</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="becodeqyality">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Java Code Quality
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://pmd.github.io/"
>PMD</a
>
</h3>
<p class="resource__text">
PMD PMD analyzes Java source code, validates it with its list of
rules, and reports offending lines to the user.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://deepsource.io/"
>DeepSource</a
>
</h3>
<p class="resource__text">
DeepSource delivers what is probably the best static code analysis
you can find for Java.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.sonarqube.org/"
>SonarQube</a
>
</h3>
<p class="resource__text">
SonarQube is the open-source suite of java static code analysis
tools that combines the features of tools such as FindBugs and PMD
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spotbugs.github.io/"
>SpotBugs</a
>
</h3>
<p class="resource__text">
SpotBugs is FindBugs' successor. It is a Java static code analysis
tool that examines JVM bytecode and finds traces of potential
errors and security vulnerabilities by identifying coding defects.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.jacoco.org/"
>EclEmma</a
>
</h3>
<p class="resource__text">
EclEmma(based on the JaCoCo library) is a free Java code coverage
tool for Eclipse. It is a toolkit for measuring code coverage in a
java code base and presenting coverage data through visual
reports.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://checkstyle.sourceforge.io/"
>Checkstyle</a
>
</h3>
<p class="resource__text">
Checkstyle is a java static analysis tool that helps developers
automate the process of defining a style guide and enforcing
coding standards within the enterprise
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.jarchitect.com/"
>JArchitect</a
>
</h3>
<p class="resource__text">
JArchitect is a Java static analysis tool that evaluates code
metrics such as the number of method parameters, variables and
lines of code, cyclomatic complexity, afferent and efferent
coupling, and so forth. It measures, queries, and visualizes your
code and avoid unexpected issues, technical debt, and complexity.
</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.sonarlint.org/"
>sonarlint</a
>
</h3>
<p class="resource__text">Clean Code starts in your IDE</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="bemaven">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Java Maven
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#bill-of-materials-bom-poms"
>Bill of Materials (BOM) POMs</a
>
</h3>
<p class="resource__text">Imports are most effective when used for defining a "library" of related artifacts that are generally part of a multiproject build.</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="bespring">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Spring
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://start.spring.io/"
>Spring Intializr</a
>
</h3>
<p class="resource__text">Genrate spring boot project</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://docs.spring.io/spring-boot/docs/1.3.5.RELEASE/reference/html/production-ready-monitoring.html"
>Spring Boot Actuator with HAL browser</a
>
</h3>
<p class="resource__text">"Monitoring
/env, /metrics, /trace, /dump
/beans, / autoconfig, /configprops, /mappings"</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/projects/spring-hateoas"
>Spring HATEOAS</a
>
</h3>
<p class="resource__text">Spring HATEOAS provides some APIs to ease creating REST representations that follow the HATEOAS principle when working with Spring and especially Spring MVC. The core problem it tries to address is link creation and representation assembly.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href=""
>Spring AOP</a
>
</h3>
<p class="resource__text">AOP framework by spring</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.eclipse.org/aspectj/"
>AspectJ</a
>
</h3>
<p class="resource__text">AspectJ is a full fledged AOP framework</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/projects/spring-data"
>Spring Data JPA</a
>
</h3>
<p class="resource__text">Spring Data JPA, part of the larger Spring Data family, makes it easy to easily implement JPA based repositories. This module deals with enhanced support for JPA based data access layers. It makes it easier to build Spring-powered applications that use data access technologies.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://hibernate.org/validator/"
>Hibernate Validator</a
>
</h3>
<p class="resource__text">Hibernate Validator allows to express and validate application constraints. The default metadata source are annotations</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/html/boot-features-spring-application.html"
>Spring Boot Banner</a>
<a
target="_blank"
class="resource__link"
href="https://devops.datenkollektiv.de/banner.txt/index.html"
>Spring Boot Banner</a>
</h3>
<p class="resource__text">"By default, Spring Boot comes with a banner which shows up as soon as the application starts.
In this article, we'll learn how to create a custom banner and use it in Spring Boot applications"</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="bewebservices">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Web Services(API)
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href=""
>JAXB</a
>
</h3>
<p class="resource__text">JAXB provides a fast and convenient way to marshal (write) Java objects into XML and unmarshal (read) XML into objects</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://swagger.io/"
>swagger</a
>
</h3>
<p class="resource__text">"Swagger is an open-source software framework backed
by a large ecosystem of tools that helps developers design,
build, document, and consume RESTful Web services"</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="betemplateengine">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Template Engine
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://freemarker.apache.org/"
>freemarker</a
>
</h3>
<p class="resource__text">Apache FreeMarker™ is a template engine: a Java library to generate text output (HTML web pages, e-mails, configuration files, source code, etc.) based on templates and changing data. Templates are written in the FreeMarker Template Language (FTL), which is a simple, specialized language (not a full-blown programming language like PHP). Usually, a general-purpose programming language (like Java) is used to prepare the data (issue database queries, do business calculations)</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://velocity.apache.org/"
>Apache Velocity</a
>
</h3>
<p class="resource__text">"Velocity is a Java-based template engine. It permits anyone to use a simple yet powerful template language to reference objects defined in Java code.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://www.thymeleaf.org/"
>Thymeleaf</a
>
</h3>
<p class="resource__text">"Thymeleaf is a modern server-side Java template engine for both web and standalone environments.
Thymeleaf's main goal is to bring elegant natural templates to your development workflow — HTML that can be correctly displayed in browsers and also work as static prototypes, allowing for stronger collaboration in development teams."</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://pebbletemplates.io/"
>Pebble Templates</a
>
</h3>
<p class="resource__text">Pebble is a Java templating engine inspired by Twig and similar to the Python Jinja Template Engine syntax. It features templates inheritance and easy-to-read syntax, ships with built-in autoescaping for security, and includes integrated support for internationalization.</p>
</div>
</article>
</div>
</section>
<section class="group group--tools" id="bemicroservice">
<div class="container">
<header>
<h2 class="group__heading">
<i class="group__heading--icon ion-ios-compose-outline"></i>
Microservices
</h2>
</header>
<article class="container__resource">
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/projects/spring-cloud-config"
>SpringCloudConfigServer</a
>
</h3>
<p class="resource__text">Spring Cloud Config provides server and client-side support for externalized configuration in a distributed system. With the Config Server you have a central place to manage external properties for applications across all environments.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/guides/gs/service-registration-and-discovery/"
>Eureka </a
>
</h3>
<p class="resource__text">You will set up a Netflix Eureka service registry and then build a client that both registers itself with the registry and uses it to resolve its own host. A service registry is useful because it enables client-side load-balancing and decouples service providers from consumers without the need for DNS.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-ribbon.html"
>Ribbon </a
>
</h3>
<p class="resource__text">Ribbon is a client-side load balancer that gives you a lot of control over the behavior of HTTP and TCP clients. Feign already uses Ribbon, so, if you use @FeignClient, this section also applies.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/guides/gs/spring-cloud-loadbalancer/"
>Spring Cloud Load Balancer </a
>
</h3>
<p class="resource__text">You will build a microservice application that uses Spring Cloud LoadBalancer to provide client-side load-balancing in calls to another microservice.</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-feign.html"
>Feign</a
>
</h3>
<p class="resource__text">"Declarative REST Client: Feign
Feign is a declarative web service client. It makes writing web service clients easier. To use Feign create an interface and annotate it. It has pluggable annotation support including Feign annotations and JAX-RS annotations. Feign also supports pluggable encoders and decoders. "</p>
</div>
<div class="resource">
<img
class="resource__logo resource__logo--round"
src="img/logos/vscode.png"
/>
<h3 class="resource__heading">
<a
target="_blank"
class="resource__link"
href="https://spring.io/blog/2016/02/15/distributed-tracing-with-spring-cloud-sleuth-and-spring-cloud-zipkin"
>Distributed Tracing with Spring Cloud Sleuth and Spring Cloud Zipkin</a
>
</h3>
<p class="resource__text">Distributed Tracing with Spring Cloud Sleuth and Spring Cloud Zipkin</p>
</div>