Slide 1

Slide 1 text

No content

Slide 2

Slide 2 text

No content

Slide 3

Slide 3 text

It took 19 years of madness Calendar calendar = GregorianCalendar.getInstance(); calendar.set(2014, 4, 15, 0, 0, 0); ! calendar.getTime(); // => Thu May 15 00:00:00 CEST 2014 ! calendar.getTime().getYear(); // => 114

Slide 4

Slide 4 text

Joda showed the way for almost 10 years LocalDate today = new LocalDate(2014, 5, 15); ! today.toString("MMM dd, yyyy”); // => May 15, 2014

Slide 5

Slide 5 text

That’s all it took ..

Slide 6

Slide 6 text

.. to get a
 Date and Time API LocalDate today = LocalDate.of(2014, 5, 15); ! today.getMonth(); // => MAY ! LocalDate tomorrow = today.plusDays(1); tomorrow.getDayOfMonth(); // => 16 ! today.getDayOfMonth(); // => 15

Slide 7

Slide 7 text

Adjusters LocalDate today = LocalDate.now(); ! today.with(firstDayOfMonth()); // => 2014-05-01 ! today.with(lastDayOfMonth()); // => 2014-05-31 ! today.with(lastInMonth(TUESDAY)); // => 2014-05-27

Slide 8

Slide 8 text

Timezones ZoneId amsterdam = ZoneId.of("Europe/Amsterdam"); ZoneId chicago = ZoneId.of("America/Chicago"); ! ZonedDateTime now = ZonedDateTime.now(amsterdam); // => 2014-05-15T19:00:03.557+02:00[Europe/Amsterdam] ! now.withZoneSameInstant(chicago); // => 2014-05-15T12:00:03.557-05:00[America/Chicago] ! now.withZoneSameLocal(chicago); // => 2014-05-15T19:00:03.557-05:00[America/Chicago]

Slide 9

Slide 9 text

Misc Information Year year = Year.now(); year.getValue(); // => 2014 ! year.isLeap(); // => false ! year.length(); // => 365

Slide 10

Slide 10 text

Just a bit of madness left DateTimeFormatter formatter =
 DateTimeFormatter.ofPattern("MMM dd, yyyy"); ! LocalDate today = LocalDate.of(2014, 5, 15); ! today.format(formatter); // => May 15, 2014

Slide 11

Slide 11 text

No content

Slide 12

Slide 12 text

Repeatable Annotations @Example("java 8") @Example("annotations") class Java8AnnotationExamples { .. } ! Java8AnnotationExamples.class.getAnnotationsByType( Example.class) // => [@Example(value=java 8),
 @Example(value=annotations)]

Slide 13

Slide 13 text

How it works @Repeatable(Examples.class) public @interface Example { String value(); } ! public @interface Examples { Example[] value(); }

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

PermGen eden to from tenured PermGem

Slide 16

Slide 16 text

Metaspace eden to from tenured Metaspace

Slide 17

Slide 17 text

Garbage Collection -XX:MetaspaceSize= -XX:MaxMetaspaceSize=

Slide 18

Slide 18 text

Depletion ! static Map leaks = new HashMap<>(); ! for (int i = 0; i < iterations; ++i) { String fakeJar = "file:" + i + ".jar"; URLClassLoader uniqueClassLoader =
 createClassLoader(fakeJar); Leak leak = (Leak) Proxy.newProxyInstance(
 uniqueClassLoader, new Class>[] { Leak.class }, new LeakInvocationHandler()); leaks.put(fakeJar, leak); }

Slide 19

Slide 19 text

PermGen Depletion $ java_home 1.7 -exec java \
 KlassLeaker --iterations 50000
 
 java.lang.OutOfMemoryError: PermGen space

Slide 20

Slide 20 text

Metaspace Depletion $ java_home 1.8 -exec java \
 KlassLeaker --iterations 50000
 
 Done

Slide 21

Slide 21 text

Metaspace Depletion $ java_home 1.8 -exec java -XX:MaxMetaspaceSize=128m \
 KlassLeaker --iterations 50000
 
 java.lang.OutOfMemoryError: Metaspace

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

Nashorn $ java_home 1.8 -exec jjs jjs> print('Hello, World!')
 Hello, World! ! jjs> var plus = function(acc, n) { return acc + n } jjs> [1,2,3].reduce(plus)
 6 !

Slide 24

Slide 24 text

Actual JavaScript
 (no ints) jjs> typeof 1
 number ! jjs> ['1','1','1'].map(parseInt)
 1,NaN,1 ! jjs> [1,2,3].map(parseInt)
 1,NaN,NaN

Slide 25

Slide 25 text

Java Interoperability jjs> var Date = Java.type('java.time.LocalDate') ! jjs> var today = Date.now() jjs> today
 2014-05-15 ! jjs> today.year
 2014 !

Slide 26

Slide 26 text

But… jjs> var IntStream = \
 Java.type(‘java.util.stream.IntStream’) ! jjs> var Range = IntStream.range jjs> Range(1,10).toArray()
 [I@78b729e6 !

Slide 27

Slide 27 text

JavaScript Libraries jjs> load(‘http://cdnjs.cloudflare.com/ajax/libs/ underscore.js/1.6.0/underscore-min.js') ! jjs> var range = Range(1, 6).toArray() jjs> _.inject(range,
 function(acc, n) { return acc * n })
 120 jjs> 


Slide 28

Slide 28 text

ScriptEngine ScriptEngineManager factory =
 new ScriptEngineManager(); ScriptEngine nashorn =
 factory.getEngineByName("nashorn"); ! nashorn.eval(“function now() { return new Date }“); ! Invocable invocable = (Invocable) nashorn; invocable.invokeFunction(“now") // => [Date 2014-05-15T17:00:03.557Z]

Slide 29

Slide 29 text

Using JavaScript libraries from Java nashorn.eval("load('http://cdnjs.cloudflare.com/ajax/ libs/underscore.js/1.6.0/underscore-min.js')"); ! nashorn.eval("function underscore() { return _ }"); ! Object underscore =
 invocable.invokeFunction("underscore"); invocable.invokeFunction(underscore, “head", new int[] { 1,2,3,4,5 }); // => 1

Slide 30

Slide 30 text

No content

Slide 31

Slide 31 text

“Functions” as Anonymous Objects writeToFile("todo.txt", new FileWriteFunction() { @Override public void apply(Writer file) throws IOException { file.write("learn about lambdas\n"); file.write("learn stream API\n"); } })

Slide 32

Slide 32 text

Lambdas writeToFile("todo.txt", file -> { file.write("learn about lambdas\n"); file.write("learn stream API\n"); })

Slide 33

Slide 33 text

Closures String todoList = "learn about lambdas\n" + "learn stream API\n"; ! writeToFile("todo.txt", file -> { file.write(todoList); })

Slide 34

Slide 34 text

Just a spoonful of Syntactic Sugars? public class Lambdas { public void run(Function fn) { System.out.println(fn.apply()); } ! public static void main(String[] args) { new Lambdas().run( () -> "Hello, World!"); } }

Slide 35

Slide 35 text

Just a spoonful of Syntactic Sugars? $ java_home 1.8 -exec javap -p Lambdas
 Compiled from "Lambdas.java"
 public class Lambdas {
 public Lambdas();
 public void run(Function);
 public static void main(java.lang.String[]);
 private static java.lang.String lambda$main$0();
 }

Slide 36

Slide 36 text

How it works $ java_home 1.8 -exec javap -c Lambdas
 
 public static void main(java.lang.String[]);
 Code:
 0: new #6 // class Lambdas
 3: dup
 4: invokespecial #7 // Method "":()V
 7: invokedynamic #8, 0 // InvokeDynamic #0:apply: ()LFunction;
 12: invokevirtual #9 // Method run:(LFunction;)V
 15: return

Slide 37

Slide 37 text

java.util.stream.Stream Collection.stream() ! -> filter :: [a] -> (a->Boolean) -> [a] ! -> map :: [a] -> (a->b) -> [b] ! -> reduce :: [a] -> r -> (r->a->r) -> r ! -> collect :: [a] -> ([a]->b) -> b

Slide 38

Slide 38 text

Making (more) sense of Collections range(1,6).stream() .count() // => 5 .reduce(0, (acc, n) -> acc * n ) // => 120 .map( n -> n * n ).collect(toList()) // => [1,4,9,16,25] .filter( n -> n % 2 == 0 ).collect(toList()) // => [2,4]

Slide 39

Slide 39 text

Optional interface UserStore { Optional find(Long id); } ! Optional user = userStore.find(1L); ! String lastname = user.map(User::getLastname) .orElse(""); ! user.ifPresent(passwordReset::send);

Slide 40

Slide 40 text

Higher-Order Functions Function1 complement(
 Function1 fn) { return t -> ! fn.apply(t); } ! Function1 adult = n -> n >= 18; Function1 child = complement(adult); adult.apply(21); // => true child.apply(21); // => false

Slide 41

Slide 41 text

No content

Slide 42

Slide 42 text

Default Implementation public interface Collector { ! boolean isEmpty(); ! default boolean nonEmpty() { return ! isEmpty(); } }

Slide 43

Slide 43 text

Parallel range(1,50_000).parallel() .filter(Numbers::isPrime) .count()

Slide 44

Slide 44 text

Parallel forkJoinPool.submit(() -> range(1,50_000).parallel() .filter(Numbers::isPrime) .count() ).get()

Slide 45

Slide 45 text

java.util.Base64 Base64.Encoder encoder = Base64.getEncoder(); Base64.Decoder decoder = Base64.getDecoder(); ! String input = "Hello, World!"; byte[] base64 =
 encoder.encode(input.getBytes("UTF-8")); ! new String(base64, "UTF-8"); // => SGVsbG8sIFdvcmxkIQ== ! new String(decoder.decode(base64), "UTF-8"); // => Hello, World! !

Slide 46

Slide 46 text

No content