-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookmarks.json
16325 lines (16325 loc) · 774 KB
/
Bookmarks.json
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
{
"checksum": "6d825c7ebc98b3904ba892c120dc36bc",
"roots": {
"bookmark_bar": {
"children": [ {
"children": [ {
"date_added": "13134123717235574",
"id": "1989",
"meta_info": {
"last_visited_desktop": "13152629612213034"
},
"name": "Sonatype Nexus",
"sync_transaction_version": "1425",
"type": "url",
"url": "http://10.170.146.138:9003/nexus/#welcome"
}, {
"date_added": "13134213695027696",
"id": "1991",
"meta_info": {
"last_visited_desktop": "13152290117393013"
},
"name": "SCM Manager",
"sync_transaction_version": "1420",
"type": "url",
"url": "http://10.170.146.138:8080/scm/index.html#repositoryPanel;CyQE799zK5"
}, {
"date_added": "13137148333589775",
"id": "2136",
"meta_info": {
"last_visited_desktop": "13150808640134395"
},
"name": "New Password · GitLab",
"sync_transaction_version": "1259",
"type": "url",
"url": "http://10.170.149.155/profile/password/new"
}, {
"date_added": "13137148451898614",
"id": "2137",
"meta_info": {
"last_visited_desktop": "13150188746968409"
},
"name": "SonarQube",
"sync_transaction_version": "1153",
"type": "url",
"url": "http://10.170.149.155:9000/about"
}, {
"date_added": "13139560883601915",
"id": "2210",
"meta_info": {
"last_visited_desktop": "13152270442278163"
},
"name": "Batuhan's Dashboard - Cardif E-Şube JIRA",
"sync_transaction_version": "1417",
"type": "url",
"url": "http://10.170.151.68:8081/secure/Dashboard.jspa"
}, {
"date_added": "13140102810863714",
"id": "2220",
"meta_info": {
"last_visited_desktop": "13152184922906147"
},
"name": "Welcome - Nexus Repository Manager",
"sync_transaction_version": "1406",
"type": "url",
"url": "http://10.170.149.155:8081/"
}, {
"date_added": "13140257678955880",
"id": "2224",
"meta_info": {
"last_visited_desktop": "13152175926277638"
},
"name": "Jenkins",
"sync_transaction_version": "1384",
"type": "url",
"url": "http://10.170.151.68:8080/login?from=%2Fjob%2Febranch-parent%2F184%2F"
}, {
"date_added": "13143121116935924",
"id": "2297",
"meta_info": {
"last_visited_desktop": "13152893452349838"
},
"name": "BNP PARIBAS CARDIF",
"sync_transaction_version": "1546",
"type": "url",
"url": "http://10.170.148.199:9081/ebranch-ui"
}, {
"date_added": "13145441076738887",
"id": "2334",
"meta_info": {
"last_visited_desktop": "13150450344063299"
},
"name": "Kibana",
"sync_transaction_version": "1200",
"type": "url",
"url": "http://10.170.149.151:5601/app/kibana#/discover?_g=()&_a=(columns:!(_source),index:'logstash-*',interval:auto,query:(query_string:(analyze_wildcard:!t,query:'*')),sort:!('@timestamp',desc))"
} ],
"date_added": "13135800238165129",
"date_modified": "13152962098390711",
"id": "6",
"name": "BNP Paribas Cardiff",
"sync_transaction_version": "1",
"type": "folder"
}, {
"children": [ {
"date_added": "13136075335966062",
"id": "2027",
"meta_info": {
"last_visited_desktop": "13136109726072174"
},
"name": "Rails, Docker: Host does not exist: \"default\" - Stack Overflow",
"sync_transaction_version": "144",
"type": "url",
"url": "http://stackoverflow.com/questions/34785064/rails-docker-host-does-not-exist-default"
}, {
"date_added": "13136075368793313",
"id": "2029",
"meta_info": {
"last_visited_desktop": "13136075368794059"
},
"name": "linux - Docker can't connect to docker daemon - Stack Overflow",
"sync_transaction_version": "135",
"type": "url",
"url": "http://stackoverflow.com/questions/21871479/docker-cant-connect-to-docker-daemon"
}, {
"date_added": "13136075372205860",
"id": "2030",
"meta_info": {
"last_visited_desktop": "13136399052595376"
},
"name": "Docker Toolbox | Docker",
"sync_transaction_version": "248",
"type": "url",
"url": "https://www.docker.com/products/docker-toolbox"
}, {
"date_added": "13136112238484820",
"id": "2033",
"meta_info": {
"last_visited_desktop": "13136112238485634"
},
"name": "\"Is your docker daemon up and running?\" Problems with docker hello world tutorial on Linux - Stack Overflow",
"sync_transaction_version": "154",
"type": "url",
"url": "http://stackoverflow.com/questions/32425717/is-your-docker-daemon-up-and-running-problems-with-docker-hello-world-tutoria"
}, {
"date_added": "13136288676253395",
"id": "2040",
"meta_info": {
"last_visited_desktop": "13136288676254934"
},
"name": "Docker RUN vs CMD vs ENTRYPOINT",
"sync_transaction_version": "197",
"type": "url",
"url": "http://goinbigdata.com/docker-run-vs-cmd-vs-entrypoint/"
}, {
"date_added": "13136300803286036",
"id": "2041",
"meta_info": {
"last_visited_desktop": "13136569635860808"
},
"name": "osx - How to increase docker-machine memory Mac - Stack Overflow",
"sync_transaction_version": "317",
"type": "url",
"url": "http://stackoverflow.com/questions/32834082/how-to-increase-docker-machine-memory-mac/39720010#39720010"
}, {
"date_added": "13136300808697496",
"id": "2042",
"meta_info": {
"last_visited_desktop": "13136303217958572"
},
"name": "elk-docker",
"sync_transaction_version": "218",
"type": "url",
"url": "https://elk-docker.readthedocs.io/#overriding-variables"
}, {
"date_added": "13136303830770775",
"id": "2044",
"meta_info": {
"last_visited_desktop": "13136569641077417"
},
"name": "Update max_map_count for ElasticSearch docker container Mac host - Docker for Mac - Docker Forums",
"sync_transaction_version": "320",
"type": "url",
"url": "https://forums.docker.com/t/update-max-map-count-for-elasticsearch-docker-container-mac-host/26183/2"
}, {
"date_added": "13136016325096468",
"id": "2014",
"meta_info": {
"last_visited_desktop": "13136399073318870"
},
"name": "Kitematic",
"sync_transaction_version": "249",
"type": "url",
"url": "https://kitematic.com/"
}, {
"date_added": "13136885788515650",
"id": "2092",
"meta_info": {
"last_visited_desktop": "13145608318458316"
},
"name": "Getting started with swarm mode - Docker Documentation",
"sync_transaction_version": "792",
"type": "url",
"url": "https://docs.docker.com/engine/swarm/swarm-tutorial/"
}, {
"date_added": "13136885801444234",
"id": "2093",
"meta_info": {
"last_visited_desktop": "13136885801444488"
},
"name": "Using Minikube to Create a Cluster | Kubernetes",
"sync_transaction_version": "338",
"type": "url",
"url": "https://kubernetes.io/docs/tutorials/kubernetes-basics/cluster-intro/"
} ],
"date_added": "13136075360439451",
"date_modified": "13145608984945627",
"id": "2028",
"name": "docker",
"sync_transaction_version": "338",
"type": "folder"
}, {
"children": [ {
"date_added": "13115829826402264",
"id": "1070",
"name": "13. Object Relational Mapping (ORM) Data Access",
"sync_transaction_version": "1",
"type": "url",
"url": "http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/orm.html#orm-hibernate"
}, {
"date_added": "13110038068195298",
"id": "1071",
"name": "19. Data access with JDBC",
"sync_transaction_version": "1",
"type": "url",
"url": "http://docs.spring.io/spring/docs/current/spring-framework-reference/html/jdbc.html"
}, {
"date_added": "13103715237705739",
"id": "1072",
"name": "24. Email-Spring",
"sync_transaction_version": "1",
"type": "url",
"url": "http://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/mail.html"
}, {
"date_added": "13115387065344916",
"id": "1073",
"meta_info": {
"last_visited_desktop": "13138466519521678"
},
"name": "8. Resources",
"sync_transaction_version": "439",
"type": "url",
"url": "http://docs.spring.io/spring/docs/current/spring-framework-reference/html/resources.html"
}, {
"date_added": "13112694805816492",
"id": "1074",
"name": "AspectJ PointCut Expressions | Vikas Gupta: Java architect, developer, Speaker, writer",
"sync_transaction_version": "1",
"type": "url",
"url": "https://guptavikas.wordpress.com/2010/04/15/aspectj-pointcut-expressions/"
}, {
"date_added": "13115831674225867",
"id": "1075",
"name": "AutowireCapableBeanFactory (Spring Framework 4.3.2.RELEASE API)",
"sync_transaction_version": "1",
"type": "url",
"url": "http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/beans/factory/config/AutowireCapableBeanFactory.html"
}, {
"date_added": "13115199619477036",
"id": "1076",
"name": "Calling Stored Procedures with Spring JDBC Templates | luv2code – For Software Developers Who Luv To Code: Java Architects and Developers – Java EE, J2EE, Blog – Chad Darby",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.luv2code.com/2011/11/10/calling-stored-procedures-with-spring-jdbc-templates/"
}, {
"date_added": "13103897930389920",
"id": "1077",
"name": "Cavalr - Send Email with Spring using Velocity template",
"sync_transaction_version": "1",
"type": "url",
"url": "http://blogrit.com/blog/Send_Email_with_Spring_using_Velocity_template"
}, {
"date_added": "13106329431367535",
"id": "1078",
"name": "CDI - @Qualifier Notasyonu | kodcu.com",
"sync_transaction_version": "1",
"type": "url",
"url": "https://kodcu.com/2013/05/cdi-qualifier-notasyonu/"
}, {
"date_added": "13110544627009836",
"id": "1079",
"name": "database - Spring Security:password encoding in DB and in applicationContext - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/8521251/spring-securitypassword-encoding-in-db-and-in-applicationcontext/8528804#8528804"
}, {
"date_added": "13115199602794962",
"id": "1080",
"name": "Different Ways of Calling Stored Procedure using Spring | Learning Technology",
"sync_transaction_version": "1",
"type": "url",
"url": "https://lalitjc.wordpress.com/2013/07/02/different-ways-of-calling-stored-procedure-using-spring/"
}, {
"date_added": "13107862107248796",
"id": "1081",
"name": "Encode your password with Spring Security 3 | PACKT Books",
"sync_transaction_version": "1",
"type": "url",
"url": "https://www.packtpub.com/books/content/spring-security-configuring-secure-passwords"
}, {
"date_added": "13110547627185840",
"id": "1082",
"name": "Example of @CacheEvict in Spring",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.concretepage.com/spring/cacheevict_spring"
}, {
"date_added": "13111491321483044",
"id": "1083",
"name": "How to get spring application context object reference?-Spring framework examples",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.java2novice.com/spring/application-context-object/"
}, {
"date_added": "13110616691796004",
"id": "1084",
"name": "How to use Spring @Value annotation in class level variables - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/25257237/how-to-use-spring-value-annotation-in-class-level-variables"
}, {
"date_added": "13103897917619194",
"id": "1085",
"name": "http://www.technicalkeeda.com/spring/spring-email-velocity-template-example yüklenemedi",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.technicalkeeda.com/spring/spring-email-velocity-template-example"
}, {
"date_added": "13112694809488419",
"id": "1086",
"name": "Introduction to Pointcut Expressions in Spring | Baeldung",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.baeldung.com/spring-aop-pointcut-tutorial"
}, {
"date_added": "13115375146833758",
"id": "1087",
"name": "Introduction to Spring Expression Language (SpEL)",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javabeat.net/introduction-to-spring-expression-language-spel/"
}, {
"date_added": "13111491213587681",
"id": "1088",
"name": "java - Getting Spring Application Context - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/129207/getting-spring-application-context"
}, {
"date_added": "13115831671546567",
"id": "1089",
"name": "java - How do I manually autowire a bean with Spring? - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/11965600/how-do-i-manually-autowire-a-bean-with-spring"
}, {
"date_added": "13103898004153170",
"id": "1090",
"name": "java - How do I send HTML email in Spring MVC? - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/5289849/how-do-i-send-html-email-in-spring-mvc"
}, {
"date_added": "13107620332138113",
"id": "1091",
"name": "java - How to correctly encode password using ShaPasswordEncoder? - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/18653294/how-to-correctly-encode-password-using-shapasswordencoder"
}, {
"date_added": "13102180980288787",
"id": "1092",
"name": "java - Loading context in Spring using web.xml - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/6451377/loading-context-in-spring-using-web-xml"
}, {
"date_added": "13115830052836082",
"id": "1093",
"name": "java - Spring - Injecting a dependency into a ServletContextListener - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/4746041/spring-injecting-a-dependency-into-a-servletcontextlistener"
}, {
"date_added": "13103897922445837",
"id": "1094",
"name": "java - Spring + Velocity Email template not rendering Html on mail body - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/28251907/spring-velocity-email-template-not-rendering-html-on-mail-body"
}, {
"date_added": "13111491382892322",
"id": "1095",
"meta_info": {
"last_visited_desktop": "13138878146736095"
},
"name": "java - Spring get current ApplicationContext - Stack Overflow",
"sync_transaction_version": "439",
"type": "url",
"url": "http://stackoverflow.com/questions/21827548/spring-get-current-applicationcontext"
}, {
"date_added": "13115217430506202",
"id": "1096",
"name": "java - Spring JDBC Template for calling Stored Procedures - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/9361538/spring-jdbc-template-for-calling-stored-procedures"
}, {
"date_added": "13111053647958514",
"id": "1097",
"name": "java - Spring Security: using 2 different hashing methods in a single application - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/23510740/spring-security-using-2-different-hashing-methods-in-a-single-application"
}, {
"date_added": "13106329482222960",
"id": "1098",
"meta_info": {
"last_visited_desktop": "13134484035587016"
},
"name": "java - What's the difference between @Component, @Repository & @Service annotations in Spring? - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/6827752/whats-the-difference-between-component-repository-service-annotations-in"
}, {
"date_added": "13102180969792535",
"id": "1099",
"name": "JSF 2, PrimeFaces 3, Spring 3 & Hibernate 4 Integration Project | Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://www.javacodegeeks.com/2012/04/jsf-2-primefaces-3-spring-3-hibernate-4.html"
}, {
"date_added": "13102180956487604",
"id": "1100",
"name": "JSF Spring Hibernate Integration Example Tutorial | JournalDev",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.journaldev.com/7122/jsf-spring-hibernate-integration-example-tutorial"
}, {
"date_added": "13112083688298732",
"id": "1101",
"name": "Logging with Spring AOP • Five",
"sync_transaction_version": "1",
"type": "url",
"url": "http://five.agency/logging-with-spring-aop/"
}, {
"date_added": "13102180962625179",
"id": "1102",
"name": "Primefaces + Spring + Hibernate Integration Example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.javabeat.net/primefaces-spring-hibernate-integration-example/"
}, {
"date_added": "13102181004953478",
"id": "1103",
"name": "Sending e-mail with Spring MVC",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.codejava.net/frameworks/spring/sending-e-mail-with-spring-mvc"
}, {
"date_added": "13102180992317231",
"id": "1104",
"name": "Sending e-mails in Java with Spring – GMail SMTP server example | Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://www.javacodegeeks.com/2010/07/java-mail-spring-gmail-smtp.html"
}, {
"date_added": "13110281790709048",
"id": "1105",
"name": "Single Sign-on for Java in 20 Minutes with Spring Boot and Heroku",
"sync_transaction_version": "1",
"type": "url",
"url": "https://stormpath.com/blog/spring-boot_id-site_heroku"
}, {
"date_added": "13115394524406961",
"id": "1106",
"name": "Spicy Spring: Create your own ResourceLoader - JDriven",
"sync_transaction_version": "1",
"type": "url",
"url": "http://blog.jdriven.com/2015/09/spicy-spring-create-your-own-resourceloader/"
}, {
"date_added": "13106329436677507",
"id": "1107",
"name": "Spring - 05 - @Autowired",
"sync_transaction_version": "1",
"type": "url",
"url": "http://serkansakinmaz.blogspot.com.tr/2015/01/spring-05-autowired.html"
}, {
"date_added": "13111848448268250",
"id": "1108",
"name": "spring - autowire boolean primitive from properties file - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/22401464/autowire-boolean-primitive-from-properties-file"
}, {
"date_added": "13115830007789035",
"id": "1109",
"name": "spring - Autowiring in servlet - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/11843690/autowiring-in-servlet"
}, {
"date_added": "13115826816473974",
"id": "1110",
"name": "spring - org.hibernate.HibernateException: No Session found for current thread - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/10459922/org-hibernate-hibernateexception-no-session-found-for-current-thread"
}, {
"date_added": "13111848457678382",
"id": "1111",
"name": "spring - What does the @Value annotation in method do? - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/21769445/what-does-the-value-annotation-in-method-do"
}, {
"date_added": "13115313019175622",
"id": "1112",
"meta_info": {
"last_visited_desktop": "13141379418847651"
},
"name": "Spring @Value notasyonu ile liste kullanma",
"sync_transaction_version": "602",
"type": "url",
"url": "https://www.mkyong.com/spring/spring-value-import-a-list-from-properties-file/"
}, {
"date_added": "13111491309410442",
"id": "1113",
"meta_info": {
"last_visited_desktop": "13138878177524118"
},
"name": "Spring 3.0 – Application Context – three ways to get the context « MyThinkPond",
"sync_transaction_version": "439",
"type": "url",
"url": "https://mythinkpond.com/2010/03/22/spring-application-context/"
}, {
"date_added": "13110547643036715",
"id": "1114",
"meta_info": {
"last_visited_desktop": "13146578225694262"
},
"name": "Spring 3.1 Caching and @CacheEvict - DZone Java",
"sync_transaction_version": "905",
"type": "url",
"url": "https://dzone.com/articles/spring-31-caching-and-0"
}, {
"date_added": "13111567610751136",
"id": "1115",
"name": "Spring AOP - pointcut where method has a custom annotation",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.stevenlanders.com/2014/07/02/spring-aop-annotation.html"
}, {
"date_added": "13111567522001135",
"id": "1116",
"name": "Spring AOP – AspectJ Annotation Config Example – HowToDoInJava",
"sync_transaction_version": "1",
"type": "url",
"url": "http://howtodoinjava.com/spring/spring-aop/spring-aop-aspectj-example-tutorial-using-annotation-config/"
}, {
"date_added": "13112091566775077",
"id": "1117",
"name": "Spring Aop @Annotation Pointcut Designator Example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javarticles.com/2015/09/spring-aop-annotation-pointcut-designator-example.html"
}, {
"date_added": "13111567497934545",
"id": "1118",
"name": "Spring AOP AspectJ Annotation Example - javatpoint",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.javatpoint.com/spring-aop-aspectj-annotation-example"
}, {
"date_added": "13112693852803682",
"id": "1119",
"name": "Spring AOP AspectJ Pointcut Expressions With Examples – HowToDoInJava",
"sync_transaction_version": "1",
"type": "url",
"url": "http://howtodoinjava.com/spring/spring-aop/writing-spring-aop-aspectj-pointcut-expressions-with-examples/"
}, {
"date_added": "13106329434589369",
"id": "1120",
"name": "Spring ApplicationContext’e Dair Notlar | javainit",
"sync_transaction_version": "1",
"type": "url",
"url": "https://javainit.wordpress.com/2015/09/12/spring-applicationcontexte-dair-notlar/"
}, {
"date_added": "13106329420643198",
"id": "1121",
"name": "Spring Autowiring @Qualifier example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.mkyong.com/spring/spring-autowiring-qualifier-example/"
}, {
"date_added": "13115395347686539",
"id": "1122",
"name": "Spring Bean Post Processors",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.tutorialspoint.com/spring/spring_bean_post_processors.htm"
}, {
"date_added": "13110626974468550",
"id": "1123",
"name": "Spring Dao - a Spring JDBC update example | alvinalexander.com",
"sync_transaction_version": "1",
"type": "url",
"url": "http://alvinalexander.com/blog/post/java/how-spring-jdbc-sql-update-sample-code"
}, {
"date_added": "13102180998009247",
"id": "1124",
"name": "Spring E-Mail Support - GMail SMTP Server Example | Examples Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://examples.javacodegeeks.com/enterprise-java/spring/mail-spring/spring-e-mail-support-gmail-smtp-server-example/"
}, {
"date_added": "13115385296640059",
"id": "1125",
"name": "Spring Expression Language Guide | Baeldung",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.baeldung.com/spring-expression-language"
}, {
"date_added": "13102180943070824",
"id": "1126",
"meta_info": {
"last_visited_desktop": "13131740570099624"
},
"name": "Spring Generic DAO And Generic Service Implementation | CodeSenior.COM",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.codesenior.com/en/tutorial/Spring-Generic-DAO-and-Generic-Service-Implementation"
}, {
"date_added": "13102180950046825",
"id": "1127",
"name": "spring hibernate and caching using ehcache - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/23019247/spring-hibernate-and-caching-using-ehcache"
}, {
"date_added": "13107103984999668",
"id": "1128",
"meta_info": {
"last_visited_desktop": "13149242913436941"
},
"name": "Spring Initializr",
"sync_transaction_version": "1080",
"type": "url",
"url": "http://start.spring.io/"
}, {
"date_added": "13115374721588510",
"id": "1129",
"name": "Spring ile properties dosyasından liste okuyarak @Value Notasyonuna aktarılması",
"sync_transaction_version": "1",
"type": "url",
"url": "http://memorynotfound.com/loading-list-from-properties-file-with-spring-value/"
}, {
"date_added": "13110626971131570",
"id": "1130",
"name": "Spring JDBC Template Simple Example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.codejava.net/frameworks/spring/spring-jdbc-template-simple-example"
}, {
"date_added": "13110269487517529",
"id": "1131",
"name": "Spring JdbcTemplate Querying examples",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.mkyong.com/spring/spring-jdbctemplate-querying-examples/"
}, {
"date_added": "13102180987707529",
"id": "1132",
"name": "Spring Property Placeholder Configurer - A few not so obvious options",
"sync_transaction_version": "1",
"type": "url",
"url": "https://www.javacodegeeks.com/2013/01/spring-property-placeholder-configurer-a-few-not-so-obvious-options.html"
}, {
"date_added": "13115824650420091",
"id": "1133",
"name": "Spring transaction propagation tutorial",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.byteslounge.com/tutorials/spring-transaction-propagation-tutorial"
}, {
"date_added": "13110380623799933",
"id": "1134",
"name": "Spring Tutorial - Spring Core Framework Tutorials - JournalDev",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.journaldev.com/2888/spring-tutorial-spring-core-tutorial"
}, {
"date_added": "13103898035577250",
"id": "1135",
"name": "spring-by-example/VelocityEmailSender.java at master · spring-by-example/spring-by-example · GitHub",
"sync_transaction_version": "1",
"type": "url",
"url": "https://github.com/spring-by-example/spring-by-example/blob/master/enterprise/velocity-email-template/src/main/java/org/springbyexample/email/VelocityEmailSender.java"
}, {
"date_added": "13110617405999910",
"id": "1136",
"name": "update a row using spring jdbctemplate - Stack Overflow",
"sync_transaction_version": "1",
"type": "url",
"url": "http://stackoverflow.com/questions/11843658/update-a-row-using-spring-jdbctemplate"
}, {
"date_added": "13110626958794353",
"id": "1137",
"name": "Update records in database with JdbcTemplate | Examples Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://examples.javacodegeeks.com/enterprise-java/spring/jdbc/update-records-in-database-with-jdbctemplate/"
}, {
"date_added": "13110038090623126",
"id": "1138",
"name": "Use RowMapper To Return List Of String : RowMapper « Spring « Java",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.java2s.com/Code/Java/Spring/UseRowMapperToReturnListOfString.htm"
}, {
"date_added": "13107620318298178",
"id": "1139",
"name": "Using Bcrypt with Spring Security | Carl Sziebert",
"sync_transaction_version": "1",
"type": "url",
"url": "http://sziebert.net/posts/using-bcrypt-with-spring-security/"
}, {
"date_added": "13103897926601909",
"id": "1140",
"name": "Using Velocity to send HTML emails in Spring with Annotations | chanochwiggers",
"sync_transaction_version": "1",
"type": "url",
"url": "https://chanochwiggers.wordpress.com/2012/07/11/using-velocity-to-send-html-emails-in-spring-with-annotations/"
}, {
"date_added": "13116338318135102",
"id": "1141",
"name": "Using NamedParameterJdbcTemplate in Spring with Example | DOJ Software Consultant | Dinesh on Java",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.dineshonjava.com/2012/12/using-namedparameterjdbctemplate-in.html"
}, {
"date_added": "13117189066785772",
"id": "1142",
"meta_info": {
"last_visited_desktop": "13146044621267899"
},
"name": "Getting Started · Building an Application with Spring Boot",
"sync_transaction_version": "848",
"type": "url",
"url": "https://spring.io/guides/gs/spring-boot/"
}, {
"date_added": "13120138098990999",
"id": "1143",
"name": "Spring with Hibernate persistence and transactions example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.byteslounge.com/tutorials/spring-with-hibernate-persistence-and-transactions-example"
}, {
"date_added": "13121506888635292",
"id": "1144",
"name": "Spring Boot Complete Guide",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javabeat.net/spring-boot/"
}, {
"date_added": "13121506924058655",
"id": "1145",
"name": "Spring 4 Tutorial",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javabeat.net/spring-4/"
}, {
"date_added": "13122453128639281",
"id": "1146",
"name": "Spring MVC 4 REST + AngularJS + Hibernate 4 Integration CRUD Tutorial with ngResource Example",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.concretepage.com/spring-4/spring-mvc-4-rest-angularjs-hibernate-4-integration-crud-tutorial-with-ngresource-example"
}, {
"date_added": "13122453241172900",
"id": "1147",
"name": "CRUD using Spring Data Rest and AngularJS using Spring Boot | ProgrammingFree",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.programming-free.com/2014/07/spring-data-rest-with-angularjs-crud.html"
}, {
"date_added": "13122463083411298",
"id": "1148",
"name": "Spring Data Redis Example | Examples Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://examples.javacodegeeks.com/enterprise-java/spring/spring-data-redis-example-2/"
}, {
"date_added": "13122463086396994",
"id": "1149",
"meta_info": {
"last_visited_desktop": "13143642275959206"
},
"name": "Getting Started · Caching Data with Spring",
"sync_transaction_version": "674",
"type": "url",
"url": "https://spring.io/guides/gs/caching/"
}, {
"date_added": "13122463092523059",
"id": "1153",
"meta_info": {
"last_visited_desktop": "13136017148033351"
},
"name": "Caching Data in Spring Using Redis · caseyscarborough.com",
"sync_transaction_version": "103",
"type": "url",
"url": "http://caseyscarborough.com/blog/2014/12/18/caching-data-in-spring-using-redis/"
}, {
"date_added": "13122463628858383",
"id": "1154",
"name": "Spring Data MongoDB Example | Examples Java Code Geeks - 2016",
"sync_transaction_version": "1",
"type": "url",
"url": "https://examples.javacodegeeks.com/enterprise-java/spring/spring-data-mongodb-example/"
}, {
"date_added": "13122463632578578",
"id": "1155",
"name": "Spring Data, Spring Boot, MongoDB Example and Tutorial - Tests4Geeks",
"sync_transaction_version": "1",
"type": "url",
"url": "https://tests4geeks.com/spring-data-boot-mongodb-example/"
}, {
"date_added": "13122463644089981",
"id": "1156",
"name": "MongoDB / Spring Data MongoDB - lishman source",
"sync_transaction_version": "1",
"type": "url",
"url": "http://source.lishman.com/tutorials/2029/mongodb/spring-data-mongodb"
}, {
"date_added": "13122463675078106",
"id": "1157",
"meta_info": {
"last_visited_desktop": "13134580105142244"
},
"name": "Getting Started · Accessing Data with MongoDB",
"sync_transaction_version": "1",
"type": "url",
"url": "https://spring.io/guides/gs/accessing-data-mongodb/"
}, {
"date_added": "13122463687973232",
"id": "1158",
"name": "Spring Data MongoDB hello world example",
"sync_transaction_version": "1",
"type": "url",
"url": "https://www.mkyong.com/mongodb/spring-data-mongodb-hello-world-example/"
}, {
"date_added": "13122463699932672",
"id": "1159",
"meta_info": {
"last_visited_desktop": "13135671195145069"
},
"name": "Introduction to Spring Data MongoDB | Baeldung",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.baeldung.com/spring-data-mongodb-tutorial"
}, {
"date_added": "13122464448960001",
"id": "1160",
"name": "Tutorial: How to Implement Java oAuth 2.0 to Sign-In with GitHub and Google | Takipi Blog",
"sync_transaction_version": "1",
"type": "url",
"url": "http://blog.takipi.com/tutorial-how-to-implement-java-oauth-2-0-to-sign-in-with-github-and-google/"
}, {
"date_added": "13124799280348595",
"id": "1161",
"name": "Building REST APIs with Spring Boot and MongoDB - Programmers Diary",
"sync_transaction_version": "1",
"type": "url",
"url": "http://programmersdiary.com/java/spring-boot-angularjs-mongodb-rest-api-tutorial/"
}, {
"date_added": "13124799218394435",
"id": "1162",
"name": "Spring Boot : RESTful API using Spring Boot and MongoDB",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javabeat.net/restful-springboot-mongodb/"
}, {
"date_added": "13124799098844541",
"id": "1163",
"name": "Spring RESTful Web Service MongoDB Data",
"sync_transaction_version": "1",
"type": "url",
"url": "https://zouftou.github.io/2015/12/08/Spring-RESTful-Web-Service-MongoDB-Data.html"
}, {
"date_added": "13124799326135267",
"id": "1164",
"name": "ReST service with Authentication, Spring Data and MongoDB – Mr. F",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.frommknecht.net/spring-rest-mongodb/"
}, {
"date_added": "13125404115955643",
"id": "1166",
"name": "Getting Started · Consuming a RESTful Web Service with Spring for Android",
"sync_transaction_version": "1",
"type": "url",
"url": "https://spring.io/guides/gs/consuming-rest-android/"
}, {
"date_added": "13125404122787820",
"id": "1167",
"meta_info": {
"last_visited_desktop": "13147857147794901"
},
"name": "Retrofit",
"sync_transaction_version": "991",
"type": "url",
"url": "http://square.github.io/retrofit/"
}, {
"date_added": "13125504421690937",
"id": "1169",
"name": "Create Augmented Reality | Blippbuilder",
"sync_transaction_version": "1",
"type": "url",
"url": "https://blippar.com/en/products/blippbuilder/"
}, {
"date_added": "13134146694432523",
"id": "1198",
"meta_info": {
"last_visited_desktop": "13134146694432945"
},
"name": "66. Spring Boot Maven plugin",
"sync_transaction_version": "1",
"type": "url",
"url": "http://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html"
}, {
"date_added": "13134146701617241",
"id": "1202",
"meta_info": {
"last_visited_desktop": "13134462340110504"
},
"name": "JAXB-2 Maven Plugin – Basic Examples - Java Generation",
"sync_transaction_version": "1",
"type": "url",
"url": "http://www.mojohaus.org/jaxb2-maven-plugin/Documentation/v2.2/example_xjc_basic.html"
}, {
"date_added": "13134146707650009",
"id": "1203",
"meta_info": {
"last_visited_desktop": "13134221993708336"
},
"name": "Generating Client JAVA code for WSDL using SOAP UI - DZone Java",
"sync_transaction_version": "1",
"type": "url",
"url": "https://dzone.com/articles/generating-client-java-code"
}, {
"date_added": "13134202791679737",
"id": "1205",
"meta_info": {
"last_visited_desktop": "13134221994698188"
},
"name": "Pivotal Web Services",
"sync_transaction_version": "1",
"type": "url",
"url": "https://console.run.pivotal.io/organizations/9ba9ed99-20b6-4174-a34c-919ce229cf4a"
}, {
"date_added": "13134570589096610",
"id": "1215",
"meta_info": {
"last_visited_desktop": "13144759299590069"
},
"name": "29. Working with SQL databases",
"sync_transaction_version": "732",
"type": "url",
"url": "https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html"
}, {
"date_added": "13134570596297638",
"id": "1216",
"meta_info": {
"last_visited_desktop": "13134570596297903"
},
"name": "JAXB2 Maven Plugin: Wiki: Home — Project Kenai",
"sync_transaction_version": "1",
"type": "url",
"url": "https://java.net/projects/maven-jaxb2-plugin/pages/Home"
}, {
"date_added": "13134570615542262",
"id": "1220",
"meta_info": {
"last_visited_desktop": "13134576790126070"
},
"name": "Spring MVC Annotations : @Component, @Repository, @Service",
"sync_transaction_version": "1",
"type": "url",
"url": "http://javabeat.net/spring-annotations-component/"
}, {
"children": [ {