-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1559 lines (1421 loc) · 52.3 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="en">
<head>
<meta charset="utf-8">
<title>Conférence Java - Novae 2013</title>
<meta name="description"
content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style"
content="black-translucent" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/serif.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<style>
.align-right{
text-align:right;
}
.align-left{
text-align:left;
}
</style>
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write('<link rel="stylesheet" href="css/print/'
+ (window.location.search.match(/print-pdf/gi) ? 'pdf' : 'paper')
+ '.css" type="text/css" media="print">');
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<!-- Slide bienvenue -->
<section>
<h4 style="text-align:left"> <img src="./img/logo.png" style="vertical-align: middle;border: 0.0px; background: transparent; box-shadow: none;">Montpellier JUG</h4>
<br />
<br />
<h1><img src="./img/logo-novaeV3.jpg"
style="vertical-align: middle;border: 0.0px; background: #003366; box-shadow: none;"> BIENVENUE
</h1>
<br /> <br />
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
<br />
</section>
<!-- Plan et orateur -->
<section>
<!-- Présentation évènement de ce soir-->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> Evènement de ce soir
</h2>
<br/>
<h3>Java Bilan et perspectives</h3>
<br/>
<ol>
<li>Merci à NOVAE pour l'organisation de cet évènement</li>
<li>Objectif : Faire un tour du propriétaire concernant Java</li>
</ol>
<img src="./img/timer.png"/>
<br/>
<aside class="notes">
<ul>
<li>Quand Yannick m'a proposé de venir vous parler de java, j'ai pensé :
<ol>
<li>Java très vaste : echosystème, langage, Frameworks, etc.</li>
<li>Public assez hétérogène dans sa connaissance de Java</li>
</ol>
</li>
<li>Donc, faire un tour du propriétaire en survolant un peu tout ça</li>
</ul>
</aside>
</section>
<!-- Section orateur -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> Orateur
</h2>
<h3>Arnaud Castelltort</h3>
<img class="fragment" style="border: 0.0px; background: transparent; box-shadow: none; width:641px; height:231px" src="./img/orateur_skills.png"/>
<img class="fragment" style="border: 0.0px; background: transparent; box-shadow: none;" src="./img/orateur_jug.png"/>
</section>
</section>
<!-- SECTION JUG -->
<section>
<!-- Vous avez dit JUG? -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> Vous avez dit JUG ?</h2>
<img src="./img/JUG_sunlogo.gif"/>
<br/>
<h3>Java User Group</h3>
<ul>
<li>Communauté indépendante</li>
<li>Autour du thème "Java" </li>
<li>Groupes reconnus et aidés par <span style="text-decoration:line-through;">SUN</span> Oracle et d'autres éditeurs (Atlassian, O'Reily, ...)</li>
</ul>
<aside class="notes">
<ul>
<li> Indépendante => indusriels, chercheurs, étudiants, recruteurs, ...</li>
<li>thème "Java" => Frameworks, technologies, gestion de projets, ...</li>
</ul>
</aside>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
<br />
</section>
<!-- Présentation du JUG Montpellier-->
<!-- <section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Présentation du JUG Montpellier</h2>
<br/>
<h3>Constat</h3>
<ul>
<li>Evolution très rapide des technologies</li>
<li>Peu de structures indépendantes pour réunir les acteurs TIC</li>
<li>Envie d'échanger pour stimuler les compétences</li>
</ul>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
<br />
</section> -->
<!-- Etat d'esprit-->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Etat d'esprit</h2>
<img style="border: 0.0px; background: transparent; box-shadow: none;" src="./img/duke_cow.png" />
<blockquote cite>
Dans un état d'esprit professionnel sur le fond et convivial sur la forme
</blockquote>
<aside class="notes">
<ul>
<li>Créer une communauté indépendante "IRL"</li>
<li>Favoriser les échanges entres industriels, universitaires et étudiants</li>
<li>Partager la connaissance et les expériences autour des technologies Java</li>
<li>Promouvoir les technologies dans la région</li>
</ul>
</aside>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
<br />
</section>
<section>
<h2>
<img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> Evènements
</h2>
<blockquote cite> Le Jug chaque 3<sup>eme</sup> mercredi du mois
</blockquote>
<ul>
<li>15<sup>ene</sup> évènements</li>
<li>~30 sujets traités</li>
<li>+ de 30 intervenants</li>
<li>De 40 à 80 auditeurs en moyenne</li>
<li>Une fois par mois</li>
<li>Inscription et évènement gratuit</li>
<li>Lieu : Polytech'Montpellier</li>
</ul>
<br />
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
</section>
<section>
<h2>
<img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> Exemple Evènement
</h2>
<img src="./img/elastic_search_affiche.png" style="width:212px; height:303px"/>
<img src="./img/elastic_search_plaquette01.png" style="width:495px; height:346px"/>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
</section>
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Les Evènements
</h2>
<img src="./img/jug-events-cloudV4.png"
style="border: 0.0px; background: transparent; box-shadow: none;"/>
</section>
<!-- <section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Derniers Evènements
</h2>
<ul>
<li>Avril : Soirée Vaadin</li>
<li>Mars : Appcelerator Titanium</li>
<li>Février : GoogleTV & Blackberry 10</li>
<li>Janvier : Performance JEE</li>
<li>Novembre 2012 : ElasticSearch</li>
<li>Octore 2012 : Ceylon</li>
<li>...</li>
</ul>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
</section>
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Prochains Evènements
</h2>
<ul>
<li><span style="text-decoration:line-through;">Mai : Dart - Sébatien Deleuze</span></li>
<li>Juin : Retours sur Devoxx France 2013 ?</li>
<li>Septembre : Play 2 - Damien Boissin</li>
<li>Octobre : Angular.js - Thierry Chatel</li>
<li>Novembre : Neo4j - Arnaud Castelltort</li>
</ul>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
</section> -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Nous contacter
</h2>
<img src="./img/jug_site.png" style="width:461px; height:305px"/>
<ul>
<li>Site internet : <a href="http://www.jug-montpellier.org">http://www.jug-montpellier.org</a></li>
<li>Tweeter : <a href="https://twitter.com/montpellierjug">@montpellierjug</a></li>
<li>Google Group : <a href="http://groups.google.com/group/jug-montpellier">jug-montpellier</a></li>
</ul>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
</section>
<section>
<h1>
<img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;"> JUG Need You!
</h1>
<br>
<img src="./img/we_need_you.png"/>
<br/>
<div>
<img src="./img/polytech.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/geomatys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/oxiane.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/esii.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/agysoft.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
<img src="./img/amesys.jpg"
style="width: 150px; height: 53px; border: 0.0px; background: transparent; box-shadow: none;">
</div>
<br />
</section>
</section>
<!-- #### Java : Bilan et perspectives ### -->
<section>
<h1>
Java
</h1>
<br>
<h2>Bilan et perspectives</h2>
<img src="./img/logo-novaeV3.jpg"
style="border: 0.0px; background: transparent; box-shadow: none;">
<br /> <br />
<div style="text-align: right;">
Arnaud Castelltort - <a href='https://twitter.com/a_castelltort'>@a_castelltort</a>
</div>
</section>
<!-- ############## Les problématiques ############## -->
<section>
<h2>Le sommaire</h2>
<img src="./img/sommaire_vert.png"
style="border: 0.0px; background: transparent; box-shadow: none;">
<aside class="notes">
<ol>
<li>Bilan Java
<ul>
<li>Pourquoi Java ?</li>
<li>Java 1.0 -> Java 6 : éléments clefs</li>
</ul>
</li>
<li>Java 7 en quelques slides</li>
<li>Les perspectives</li>
</ol>
</aside>
<br /> <br /> <br />
</section>
<section>
<h2>Avant propos</h2>
<img src="./img/yellow_warning.jpg"
style="border: 0.0px; background: transparent; box-shadow: none;"><br>
Tout ce qui suit dans cette présentation est mon opinion personnelle.
<div class="fragment">
<blockquote cite>
Celui qui dit détenir la vérité est un fou ou un dictateur
</blockquote>
</div>
<br/>
<div class="fragment">
<blockquote cite>
Nous ne sommes pas sencé savoir ce que tous les autres ignorent
</blockquote>Microsoft
</div>
</section>
<!-- ############## Java - Pourquoi ############## -->
<section>
<section>
<h2>Java : pourquoi ?</h2>
Qu'est ce que Java ?
<div class="fragment">
<img src="./img/java_coffee.jpg"/>
<img src="./img/java_coffee_package.jpg"/>
</div>
<aside class="notes">
un langage, un environnement d'exécution, un écosystème
</aside>
</section>
<section>
<h2>Java : pourquoi ?</h2>
<img class="fragment" style="width:587px; height:455px" src="./img/angryc_segfault.png"/>
</section>
<section>
<h2>Java : pourquoi ?</h2>
<img src="./img/segfault_screen.jpg"/>
<img src="./img/brave_segfault.jpg" class="fragment"
style="border: 0px; background: none; box-shadow: 0 0 0; position: absolute; left: 400px; top: 400px%;"/>
</section>
<section>
<h2>Java : pourquoi ?</h2>
<blockquote class="fragment"cite>
Write once, run anywhere!
</blockquote>
<ul class="fragment">
<li>Langage fortement typé</li>
<li><strong>Gestion de la mémoire simplifiée</strong></li>
<li>Gestion des exceptions</li>
<li>Multitâche</li>
<li>Sécurisé (hmm.. un jour oui.. un jour non) </li>
<li>Bibliothèque très riche</li>
<li><strong>Exécutable portable</strong></li>
<li>Gratuit</li>
<li><strong>Forte communauté</strong></li>
<li>...</li>
</ul>
</section>
<!-- <section>
<h2>Les caractéristiques de Java</h2>
<ul>
<li>Cross Plaform</li>
<li>Paradigme orienté objet</li>
<li>Robuste</li>
<li>Bonne performance (pour de l'informatique de gestion)</li>
<li>Gestion automatiquement de la mémoire</li>
</ul>
</section> -->
<!-- <section>
<h2>Java : pourquoi ?</h2>
Qu'est ce que Java ?
<div>
<img src="./img/java_env.png"/>
<ul>
<li>Un langage de programmation orienté objets</li>
<li>Une plateforme (Java Virtual Machine) d'exécution</li>
<li>Un echosystème</li>
<li>...</li>
</ul>
</div>
</section> -->
<!-- <section>
<h2>Java.setPlatform("Cross Platform")</h2>
<ul>
<li><strong>Platform</strong> : décrit une architecture matérielle ou logicielle permettant de faire tourner des logiciels</li>
<li>Il existe différentes architecture</li>
<li>Il existe différents systèmes d'exploitations</li>
</ul>
Java est WORA :
<blockquote class="fragment"cite>
Write once, run anywhere!
</blockquote>
</section> -->
<!-- <section>
<h2>WORA</h2>
TODO : prendre les images
</section>
<section>
<h2>Java.setParadigm("POO")</h2>
<ul>
<li>Tout est objet</li>
<li>Repose sur les concepts objets (Class, Objets, Polymorphism, encapsulation, échange de messages, inhéritance, modularité, ...)</li>
<li>Repose sur les axioms objets (e.g. flexibilité, extensibilité, réutilisabilité)</li>
</ul>
</section> -->
<section>
<h2>Terminologie Java</h2>
<ul>
<li><strong>Java Virual Machine (JVM)</strong> Une architecture machine abstraite respectant les spécifications java</li>
<li><strong>Java Runtime Environment (JRE)</strong> Un environement d'exécution qui implémente une JVM et fournit tous les composants (class, librairies, ...) nécessaires à l'exécution des programmes Java</li>
<li><strong>Java Development Kit</strong> les outils basiques nécessaires à la compilation, la documentaion et à l'assemblage des programmes (javac, javadoc, jar, ..). Le JDK inclut la JRE</li>
</ul>
</section>
<section>
<h2>Les plateformes Java</h2>
<img src="./img/java_platforms.png"/><br>
<img class="fragment" src="./img/java_card.png" style="width:228px; height:257px" />
<aside class="notes">
<ol>
<li>Java Standard Edition (SE)
<ul>
<li>Pour construire des applications généraliste</li>
<li>Qui tournent sur ordinateurs de bureau et portables</li>
<li>Inclus un grand nombre de librairies pour des problématiques courantes (réseau, base de données, ...)</li>
</ul>
</li>
<li>Java Micro Edition (JME)
<ul>
<li>Applications pour des appareils à capacité limitée</li>
<li>tourne sur des téléphones mobiles, des PDA, ...</li>
</ul>
</li>
<li>Java Enterprise Edition (JEE)</li>
</ol>
Remarque : il existe aussi Java Card
</aside>
</section>
<!-- <section>
<h2>Java Standard Edition (SE)</h2>
<ul>
<li>Pour construire des applications généraliste</li>
<li>Qui tournent sur ordinateurs de bureau et portables</li>
<li>Inclus un grand nombre de librairies pour des problématiques courantes (réseau, base de données, ...)</li>
</ul>
</section> -->
<!-- <section>
<h2>Java Micro Edition (ME)</h2>
<ul>
<li>Applications pour des appareils à capacité limitée</li>
<li>tourne sur des téléphones mobiles, des PDA, ...</li>
</ul>
</section> -->
<!-- <section>
<h2>Java Enterprise Edition (ME)</h2>
<ul>
<li>Création d'application d'entreprise</li>
<li>Concentré sur la logique métier</li>
<li>Avec une architecture multi-tiers (client, web, méier, Enterprise Information System (EIS))</li>
</ul>
</section> -->
</section>
<!-- ### Java 1.0 à 1.6 ###-->
<section>
<!-- Synopsis -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Java 1.0 -> Java 6
</h2>
<img src="./img/java1to6.png" /><!--style="width:461px; height:305px"/>-->
</section>
<!-- Communauté JCP -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Communauté Java
</h2>
<div style="text-align:left">
<ul>
<li><strong>Java Communiy Process (JCP)</strong> processus formalisé permettant aux acteurs intéressés de participer à la définition des nouvelles versions et évolutions de la plateforme</li>
<li><strong>Java Specification Request (JSR)</strong> le document formel de description d'une spécification et/ou technologie</li>
<li><strong>Java & Open Source</strong></li> En mai 2007, Sun rend libre sous licence GNU GPL la plupart des technologies Java.</li>
</ul>
</div>
<aside class="notes">
JCAP :
<ul>
<li>objectif : coordonner l'évolution du langage Java</li>
<li>composé d'entreprise du domaine Java, de fondations du monde du logiciel libre et de particuliers</li>
<li>Le JCP émet des JSR (Java Specification Requests)</li>
</ul>
Le processus :
<ul>
<li>JCP émet des JSR</li>
<li>Des revues des JSR sont menés jusqu'à la publication d'une JSR finale</li>
<li>une implémentation gratuite de la technologie est contribuée sous la forme de code source avec un ensemble de TCK (Technology Compatibility Tests)</li>
</ul>
</aside>
</section>
<section>
<h2>Java Frameworks</h2>
<ul>
<li>Outils de tests : junit, testng, ...</li>
<li>GUIs : AWT, Swing, ...</li>
<li>IDEs : Netbeans, Eclipse, IntelliJ IDEA</li>
<li>Build Systems : Ant, Maven, Gradle</li>
<li>Persistence : Hibernate, Ibatis, ...</li>
<li>Charting & Reporting : Jasper, JFreeChart, ...</li>
</ul>
</section>
</section>
<!-- ### Java 7 ### -->
<section>
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Java 7
</h2>
<small>
<ul>
<li>Sortie en 2011</li>
<li>
<a href="http://www.oracle.com/technetwork/java/javase/jdk7-relnotes-418459.html" target="_blank">
Fonctionnalités : "What's ready"
</a>
</li>
<li>Principales fonctionnalités
<ul>
<li>Langage : Project Coin (JSR-334)</li>
<li>Librairies :
<ul>
<li>NIO2 (JSR-203)</li>
<li>Fork Join framework, <strike>ParallelArray (JSR-166y)</strike></li>
</ul>
</li>
<li>InvokeDynamic bytecode (JSR-292)</li>
<li>...</li>
</ul>
</li>
</ul>
</small>
<br/>
Attention : plus de support Java 6!!
</section>
<!-- Project Coin : synopsis -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : synopsis
</h2>
<div class="align-left">
Ensemble de sugestions faites par la communauté et implémentées dans Java 7.
<ul>
<li>String support on Switch case</li>
<li>multi-catch and precise re-throw</li>
<li>Autocloseable</li>
<li>Binary literals && underscores in numeric literals</li>
<li>Diamond operator</li>
<li>...</li>
</ul>
</div>
<aside class="notes">
Premiers changements dans le langage depuis 2004 (Java 5)
</aside>
</section>
<!-- String Switch -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : String Switch case
</h2>
<pre><code class="java">
public int NbrDay(String s, int year) {
switch(s) {
case "April": case "June":
case "September": case "November":
return 30;
case "January": case "March": case "May":
case "July": case "August": case "December":
return 31;
case "February":
//...
default:
//...
}
} </code></pre>
<aside class="notes">
Evite que les gens fassent des enums pour rien
</aside>
</section>
<!-- precise Rethrow -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Precise Rethrow
</h2>
<pre>
<code class="java">
// pre Java 7 "imprecise rethrow"
// must use "throws Exception"
public static void imprecise() throws Exception {
try {
// Code that may throw either
// FirstException or SecondException
} catch (Exception e) {
throw e;
}
}
</code>
</pre>
</section>
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Precise Rethrow
</h2>
<pre>
<code class="java">
// Java 7 precise rethrow.
// No longer "throws Exception"
public static void precise() throws FirstException, SecondException {
try {
// Code that may throw either
// FirstException or SecondException
} catch (Exception e) {
throw e;
}
}
</code>
</pre>
</section>
<!-- multi-catch -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Multi-catch
</h2>
<pre>
<code class="java">
//...
catch (IOException ex) {
logger.log(ex);
throw ex;
} catch (SQLException ex) {
logger.log(ex);
throw ex;
}
</code>
</pre>
<aside class="notes">
important problème tu rethrow sur Exception : signature avec Exception au lieu de IOException, SQLException
</aside>
</section>
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Multi-catch
</h2>
<pre>
<code class="java">
try {
...
} catch (SpecificException ex) {
// Do something very specific!
throw ex;
} catch (AnException | MyException | ZeException ex) {
// Do something more generic...
throw ex;
}
</code>
</pre>
</section>
<!-- AutoCloseable -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : AutoCloseable
</h2>
<pre>
<code class="java" data-trim contenteditable>
try (InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dest))
{
byte[] buf = new byte[8192];
int n;
while (n = in.read(buf)) >= 0)
out.write(buf, 0, n);
}
</code>
</pre>
Interface java.lang.AutoCloseable (<code>void close()</code>)
<aside class="notes">
<small>Avant, block finaly (fermer les ressources même en cas d'exceptions) </small>
</aside>
</section>
<!-- Binary literals -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Binary literals
</h2>
Qu'est ce qu'un litéral ?
<div class="fragment" > Une valeur constante dans un programme : entier, flotant, caractère, booléen, string, hexa, ..</div>
<pre class="fragment">
<code class="java" data-trim contenteditable>
int mask = 0b101010101010;
</code>
</pre>
</section>
<!-- Underscore in numeric literals -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Underscore numeric literals
</h2>
<pre>
<code class="java" data-trim contenteditable>
int mask = 0b1010_1010_1010;
long big = 9_223_783_036_967_937L;
long creditCardNumber = 1234_5678_9012_3456L;
long socialSecurityNumber = 999_99_9999L;
long siret = 123_456_789_00031;
float pi = 3.14_16F; <!-- fix from 3.14_15F thanks to @oNouguier -->
long hexBytes = 0xFF_EC_DE_5E;
long hexWords = 0xCAFE_BFFE;
</code>
</pre>
</section>
<!-- Diamond operator -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">Project Coin : Diamond <>
</h2>
<pre><code data-trim contenteditable>
Map<Ville,List<Client>> map = new HashMap<Ville,List<Client>>();
Map<Ville,List<Client>> map = new HashMap<>();
Map<Dep,Map<Ville,List<Client>>> map = new HashMap<Dep,Map<Ville,List<Client>>>();
Map<Dep,Map<Ville,List<Client>>> map = new HashMap<>();
Map<Pays,Map<Dep,Map<Ville,List<Client>>>> map = new HashMap<Pays,Map<Dep,Map<Ville,List<Client>>>>();
Map<Pays,Map<Dep,Map<Ville,List<Client>>>> map = new HashMap<>();
</code></pre>
</section>
<!--NIO2 -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">NIO2
</h2>
<small>
<ul>
<li>Modèle unifié pour tous les systèmes de fichiers</li>
<li>Le parcours d'arbres de fichiers (visite)</li>
<li>Support des opérations basique sur les fichiers(copier, supprimer, déplacer)</li>
<li>Support des liens symboliques</li>
<li>Notification de changements sur le Système de fichier</li>
<li>SPI pour supporter des nouveaux systèmes de fichiers (ServiceProvider)</li>
<li>Travail asynchrone sur des fichiers et sockets</li>
<li>...</li>
</ul>
</small>
</section>
<!-- NIO : nouvelle API -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">NIO2 : La nouvelle API
</h2>
<div class="align-left">
<small>
Les principales classes (java.nio.file) :
<ul>
<li>Path : chemin d'accès vers une ressource</li>
<li>Files : classe utilitaire contenant des méthodes (static) d'opérations sur les fichiers et chemins d'accès</li>
<li>FileSystem : classe représentant un FS, utilisait pour obtenir les chemins de fichiers</li>
<li>FileSystems : classe utilitaire permettant d'obtenir l'accès à un FS</li>
<li>FileSystems.getDefault() : obtient un accès à tous les fichiers accessibles par la JVM</li>
</ul>
</small>
</div>
<aside class="notes">
<ul>
<li>Path : n'importe quelle type de ressource (/home/... c:\Users\...)</li>
<li>FileStore : class that represents the file storing mechanism that is manipulated by the different methods of the API (a partition of a hard drive, an external device plugged in via USB, etc.).</li>
</ul>
</aside>
</section>
<!-- NIO2: Files -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">NIO2 : Files
</h2>
<ul>
<li>Read/Write, Copy & Delete</li>
<li>Create Files, Directories & Links</li>
<li>Use of system "temp" directory</li>
<li>Attributes - Modified/Owner/Permissions/Size</li>
<li>Déterminer le type de contenu</li>
<li>Déterminer le type de fichier (isExecutable, isSymLink</li>
<li>...</li>
</ul>
</section>
<!-- Exemple parcours de fichiers -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">NIO2 : Parcours de fichiers
</h2>
<pre><code class="java">
Path p1 = Paths.get("/tmp/foo");
Path p2 = Paths.get(URI.create("file:///Users/joe/FileTest.java"));
Path p3 = Paths.get(System.getProperty("user.home"),"logs", "foo.log");
Path p4 = Paths.get("/home/joe/foo");
Path p5 = ("c:\\data\\test.dta");
Path p6 = Paths.get("Test.java").toAbsolutePath();
Path fileName = listing.geFileName();
Path parent = p2.getParent();
Path root = p2.getRoot();
Path subRep = p2.subPath(0,2);
File file = aPathPath.toFile(); // ‘legacy’ java.io.File
</code></pre>
</section>
<!-- NIO2: Files -->
<section>
<h2><img src="./img/logo.png"
style="border: 0.0px; background: transparent; box-shadow: none;">NIO2 : Liens symboliques
</h2>
<pre><code class="java">
// Path and Files are “link aware”
Path newLink = Paths.get(...);
Path existingFile = Paths.get(...);