Slide 1

Slide 1 text

Guillaume Laforge 
 @glaforge What makes Groovy groovy?

Slide 2

Slide 2 text

Guillaume Laforge Groovy project lead at . ! @glaforge http://glaforge.appspot.com

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

The Groovy vision Part 1

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

Simplify the life of (Java) developers

Slide 7

Slide 7 text

No content

Slide 8

Slide 8 text

Groovy as a Java superset

Slide 9

Slide 9 text

It’s so easy to learn! Groovy as a Java superset

Slide 10

Slide 10 text

No content

Slide 11

Slide 11 text

No content

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   }

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

AssafeandfastasJava with statictypechecking & compilation

Slide 16

Slide 16 text

AssafeandfastasJava with statictypechecking & compilation

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

new  MarkupBuilder().html  {          head  {                  title  "The  Script  Bowl"          }   !        body  {                  div(class:  "banner")  {                          p  "Groovy  rocks!"                  }          }   }

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

move  forward  at  3.km/h Expressive, Concise, Readable

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

@RestController   class  App  {          @RequestMapping("/")          String  home()  {  "Hello  World!"  }   } Speaking of conciseness... A full Spring app in the span of a tweet!

Slide 24

Slide 24 text

million 
 downloads
 per year 1.7

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

Great for scripting

Slide 27

Slide 27 text

Great for scripting Fit for Domain- Specific Languages

Slide 28

Slide 28 text

Great for scripting Fit for Domain- Specific Languages Most seamless integration & interoperability wih java!

Slide 29

Slide 29 text

No content

Slide 30

Slide 30 text

No content

Slide 31

Slide 31 text

Yup, we’re all using Groovy!

Slide 32

Slide 32 text

Cool Groovy gems Part 2

Slide 33

Slide 33 text

No content

Slide 34

Slide 34 text

Most Java code is also valid Groovy code!

Slide 35

Slide 35 text

Any Java developer is a Groovy developer! Most Java code is also valid Groovy code!

Slide 36

Slide 36 text

No content

Slide 37

Slide 37 text

Flat learning curve

Slide 38

Slide 38 text

Flat learning curve Easy to learn

Slide 39

Slide 39 text

Scripts versus Classes !18 public  class  Main  {          public  static  void  main(String[]  args)  {                  System.out.println("Hello");          }   } vs

Slide 40

Slide 40 text

Scripts versus Classes !18 public  class  Main  {          public  static  void  main(String[]  args)  {                  System.out.println("Hello");          }   } println  "Hello" vs

Slide 41

Slide 41 text

Optional

Slide 42

Slide 42 text

Optional Semicolons

Slide 43

Slide 43 text

Optional Semicolons Parentheses

Slide 44

Slide 44 text

Optional Semicolons Parentheses return keyword

Slide 45

Slide 45 text

Optional Semicolons Parentheses return keyword public keyword

Slide 46

Slide 46 text

Optional Semicolons Parentheses return keyword public keyword Typing!

Slide 47

Slide 47 text

Optional... !20 public  class  Greeter  {          private  String  owner;   !        public  String  getOwner()  {                  return  owner;          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner;          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner;          }   }   ! Greeter  greeter  =  new  Greeter();   greeter.setOwner("Guillaume");   ! System.out.println(greeter.greet("Marion"));

Slide 48

Slide 48 text

Optional... !20 public  class  Greeter  {          private  String  owner;   !        public  String  getOwner()  {                  return  owner;          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner;          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner;          }   }   ! Greeter  greeter  =  new  Greeter();   greeter.setOwner("Guillaume");   ! System.out.println(greeter.greet("Marion")); Semicolons

Slide 49

Slide 49 text

Optional... !21 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                  return  owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner("Guillaume")   ! System.out.println(greeter.greet("Marion"))

Slide 50

Slide 50 text

Optional... !22 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                  return  owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner("Guillaume")   ! System.out.println(greeter.greet("Marion"))

Slide 51

Slide 51 text

Optional... !22 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                  return  owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner("Guillaume")   ! System.out.println(greeter.greet("Marion")) Parentheses

Slide 52

Slide 52 text

Optional... !23 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                  return  owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion")

Slide 53

Slide 53 text

Optional... !23 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                  return  owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion") return keyword

Slide 54

Slide 54 text

Optional... !24 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                                owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion")

Slide 55

Slide 55 text

Optional... !24 public  class  Greeter  {          private  String  owner   !        public  String  getOwner()  {                                owner          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner          }   !        public  String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion") public keyword

Slide 56

Slide 56 text

Optional... !25              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion")

Slide 57

Slide 57 text

Optional... !25              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! Greeter  greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion") optional typing

Slide 58

Slide 58 text

Optional... !26              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion")

Slide 59

Slide 59 text

Optional... !26              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   ! System.out.println  greeter.greet("Marion") handy println shortcut

Slide 60

Slide 60 text

Optional... !27              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   !                      println  greeter.greet("Marion")

Slide 61

Slide 61 text

Optional... !27              class  Greeter  {          private  String  owner   !                      String  getOwner()  {                                owner          }   !                      void  setOwner(String  owner)  {                  this.owner  =  owner          }   !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   !                      println  greeter.greet("Marion") verbose Java properties!

Slide 62

Slide 62 text

Optional... !28              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   !                      println  greeter.greet("Marion")

Slide 63

Slide 63 text

Optional... !28              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.setOwner  "Guillaume"   !                      println  greeter.greet("Marion") Property notation

Slide 64

Slide 64 text

Optional... !29              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.owner        "Guillaume"   !                      println  greeter.greet("Marion")

Slide 65

Slide 65 text

Optional... !29              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter()   greeter.owner        "Guillaume"   !                      println  greeter.greet("Marion") Named argument constructor

Slide 66

Slide 66 text

Optional... !30              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter(owner:  "Guillaume")   ! !                      println  greeter.greet("Marion")

Slide 67

Slide 67 text

Optional... !30              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  "  +  name  +  ",  I  am  "  +  owner          }   }   ! def          greeter  =  new  Greeter(owner:  "Guillaume")   ! !                      println  greeter.greet("Marion") Interpolated strings! (aka GStrings)

Slide 68

Slide 68 text

Optional... !31              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  ${name},  I  am  ${owner}"          }   }   ! def          greeter  =  new  Greeter(owner:  "Guillaume")   ! !                      println  greeter.greet("Marion")

Slide 69

Slide 69 text

Optional... !31              class  Greeter  {                          String  owner   ! ! ! ! ! ! ! ! !                      String  greet(String  name)  {                                "Hello  ${name},  I  am  ${owner}"          }   }   ! def          greeter  =  new  Greeter(owner:  "Guillaume")   ! !                      println  greeter.greet("Marion") Let’s reformat that mess of whitespace!

Slide 70

Slide 70 text

Optional... !32 class  Greeter  {          String  owner   !        String  greet(String  name)  {                "Hello  ${name},  I  am  ${owner}"          }   }   ! def  greeter  =  new  Greeter(owner:  "Guillaume")   ! println  greeter.greet("Marion")

Slide 71

Slide 71 text

Optional... !32 class  Greeter  {          String  owner   !        String  greet(String  name)  {                "Hello  ${name},  I  am  ${owner}"          }   }   ! def  greeter  =  new  Greeter(owner:  "Guillaume")   ! println  greeter.greet("Marion") public  class  Greeter  {          private  String  owner;   !        public  String  getOwner()  {                  return  owner;          }   !        public  void  setOwner(String  owner)  {                  this.owner  =  owner;          }   !        public  String  greet(String  name)  {                  return  "Hello  "  +  name  +  ",  I  am  "  +  owner;          }   }   ! Greeter  greeter  =  new  Greeter();   greeter.setOwner("Guillaume");   ! System.out.println(greeter.greet("Marion"));

Slide 72

Slide 72 text

Optional... !32 class  Greeter  {          String  owner   !        String  greet(String  name)  {                "Hello  ${name},  I  am  ${owner}"          }   }   ! def  greeter  =  new  Greeter(owner:  "Guillaume")   ! println  greeter.greet("Marion")

Slide 73

Slide 73 text

Native syntax constructs !33 //  closures   def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! //  lists   def  list  =  [1,  2,  3,  4,  5]   ! //  maps   def  map  =  [a:  1,  b:  2,  c:  3]   ! //  regular  expressions   def  regex  =  ~/.*foo.*/   ! //  ranges   def  range  128..255

Slide 74

Slide 74 text

Closures — the basics !34 def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! assert  adder(1,  2)  ==  3   assert  adder('a',  'b')  ==  'ab'

Slide 75

Slide 75 text

Closures — the basics !34 def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! assert  adder(1,  2)  ==  3   assert  adder('a',  'b')  ==  'ab' Closure parameters

Slide 76

Slide 76 text

Closures — the basics !34 def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! assert  adder(1,  2)  ==  3   assert  adder('a',  'b')  ==  'ab' Assign a function into a variable Closure parameters

Slide 77

Slide 77 text

Closures — the basics !34 def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! assert  adder(1,  2)  ==  3   assert  adder('a',  'b')  ==  'ab' Short form of: adder.call(‘a’, ‘b’) Assign a function into a variable Closure parameters

Slide 78

Slide 78 text

Closures — the basics !34 def  adder  =  {  a,  b  -­‐>  a  +  b  }   ! assert  adder(1,  2)  ==  3   assert  adder('a',  'b')  ==  'ab' Short form of: adder.call(‘a’, ‘b’) Genericity with duck typing & operator overloading Assign a function into a variable Closure parameters

Slide 79

Slide 79 text

Closures — explicit type !35 ! def  intAdder  =  {  int  a,  int  b  -­‐>  a  +  b  }  

Slide 80

Slide 80 text

Closures — explicit type !35 ! def  intAdder  =  {  int  a,  int  b  -­‐>  a  +  b  }   Be explicit about the types

Slide 81

Slide 81 text

Closures — implicit parameter !36 def  doubler  =  {  it  *  2  }   ! assert  doubler(3)  ==  6   assert  doubler('a')  ==  'aa'

Slide 82

Slide 82 text

Closures — implicit parameter !36 def  doubler  =  {  it  *  2  }   ! assert  doubler(3)  ==  6   assert  doubler('a')  ==  'aa' Implicit parameter

Slide 83

Slide 83 text

Closures — implicit parameter !36 def  doubler  =  {  it  *  2  }   ! assert  doubler(3)  ==  6   assert  doubler('a')  ==  'aa' Implicit parameter Multiply also defined on strings

Slide 84

Slide 84 text

Closures — variable arguments !37 def  sum  =  {  ...  elements  -­‐>  
                                elements.sum()  }   ! assert  sum(1,  2)  ==  3   assert  sum('a',  'b',  'c')  ==  'abc'

Slide 85

Slide 85 text

Closures — variable arguments !37 def  sum  =  {  ...  elements  -­‐>  
                                elements.sum()  }   ! assert  sum(1,  2)  ==  3   assert  sum('a',  'b',  'c')  ==  'abc' Variable number of arguments

Slide 86

Slide 86 text

Closures — variable arguments !37 def  sum  =  {  ...  elements  -­‐>  
                                elements.sum()  }   ! assert  sum(1,  2)  ==  3   assert  sum('a',  'b',  'c')  ==  'abc' You can specify the type: int... Variable number of arguments

Slide 87

Slide 87 text

Closures — default values !38 def  mult  =  {  int  a,  int  b  =  10  -­‐>  a  *  b  }   ! assert  mult(2,  3)  ==  6   assert  mult(5)  ==  50

Slide 88

Slide 88 text

Closures — default values !38 def  mult  =  {  int  a,  int  b  =  10  -­‐>  a  *  b  }   ! assert  mult(2,  3)  ==  6   assert  mult(5)  ==  50 Default value

Slide 89

Slide 89 text

Closures — default values !38 def  mult  =  {  int  a,  int  b  =  10  -­‐>  a  *  b  }   ! assert  mult(2,  3)  ==  6   assert  mult(5)  ==  50 Default value Provided value for b

Slide 90

Slide 90 text

Closures — default values !38 def  mult  =  {  int  a,  int  b  =  10  -­‐>  a  *  b  }   ! assert  mult(2,  3)  ==  6   assert  mult(5)  ==  50 Default value Provided value for b Default value used for b

Slide 91

Slide 91 text

Closures — methods as functions !39 def  logBase10  =  Math.&log10   def  printer  =  System.out.&println   ! assert  logBase10(10)  ==  1   printer  'abc'

Slide 92

Slide 92 text

Closures — methods as functions !39 def  logBase10  =  Math.&log10   def  printer  =  System.out.&println   ! assert  logBase10(10)  ==  1   printer  'abc' Turn a method into a closure function

Slide 93

Slide 93 text

Closures — map / filter / reduce !40

Slide 94

Slide 94 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 }

Slide 95

Slide 95 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 }

Slide 96

Slide 96 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ]

Slide 97

Slide 97 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ]

Slide 98

Slide 98 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ] def  names  =
        persons.findAll  {  it.age  <  18  }
                      .collect  {  it.name.toUpperCase()  }
                      .sort()
                      .join(',  ')

Slide 99

Slide 99 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ] def  names  =
        persons.findAll  {  it.age  <  18  }
                      .collect  {  it.name.toUpperCase()  }
                      .sort()
                      .join(',  ')

Slide 100

Slide 100 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ] def  names  =
        persons.findAll  {  it.age  <  18  }
                      .collect  {  it.name.toUpperCase()  }
                      .sort()
                      .join(',  ') assert  names  ==  "ERINE,  MARION"

Slide 101

Slide 101 text

Closures — map / filter / reduce !40 @groovy.transform.Immutable
 class  Person  {
        String  name
        int  age
 } def  persons  =  [
        new  Person('Guillaume',  36),
        new  Person('Marion',  5),
        new  Person('Erine',  1)
 ] def  names  =
        persons.findAll  {  it.age  <  18  }
                      .collect  {  it.name.toUpperCase()  }
                      .sort()
                      .join(',  ') assert  names  ==  "ERINE,  MARION" find/findAll, inject, collect, flatten, min/max, unique, reverse, collate, groupBy, any/ every, head/tail/last, count/ countBy, combinations/ permutations/subsequences/ transpose, withDefault/ withLazyDefault

Slide 102

Slide 102 text

Closures — resource handling !41 new  File('bible.txt').withReader  {  r  -­‐>          new  File('out.txt').withWriter  {  w  -­‐>                  r.eachLine  {  line  -­‐>                          if  (line.contains('Groovy'))                                  w  <<  line.toUpperCase()                  }          }   }

Slide 103

Slide 103 text

Closures — resource handling !41 new  File('bible.txt').withReader  {  r  -­‐>          new  File('out.txt').withWriter  {  w  -­‐>                  r.eachLine  {  line  -­‐>                          if  (line.contains('Groovy'))                                  w  <<  line.toUpperCase()                  }          }   } Take care of properly opening / closing resources

Slide 104

Slide 104 text

Closures — custom control structures !42 void  unless(boolean  cond,  Closure  c)  {          if  (!cond)  c()   }   ! unless  (10  <  9)  {          println  "less"   }

Slide 105

Slide 105 text

Closures — custom control structures !42 void  unless(boolean  cond,  Closure  c)  {          if  (!cond)  c()   }   ! unless  (10  <  9)  {          println  "less"   } Closure as last argument

Slide 106

Slide 106 text

Closures — custom control structures !42 void  unless(boolean  cond,  Closure  c)  {          if  (!cond)  c()   }   ! unless  (10  <  9)  {          println  "less"   } Closure as last argument Equivalent to: unless(10<9, {...})

Slide 107

Slide 107 text

Lists !43 def  list  =  ['a',  'b',  'c']   ! list  <<  'd'   assert  list.contains('d')   ! assert  list.findAll  {  it.startsWith  'a'  }.size()  ==  1   assert  list.collect  {  it.toUpperCase()  }  
                                                              ==  ['A',  'B',  'C',  'D']   assert  list.inject('')  {  a,  b  -­‐>  a  +  b  }  ==  'abcd'

Slide 108

Slide 108 text

Lists !43 def  list  =  ['a',  'b',  'c']   ! list  <<  'd'   assert  list.contains('d')   ! assert  list.findAll  {  it.startsWith  'a'  }.size()  ==  1   assert  list.collect  {  it.toUpperCase()  }  
                                                              ==  ['A',  'B',  'C',  'D']   assert  list.inject('')  {  a,  b  -­‐>  a  +  b  }  ==  'abcd' List definition

Slide 109

Slide 109 text

Lists !43 def  list  =  ['a',  'b',  'c']   ! list  <<  'd'   assert  list.contains('d')   ! assert  list.findAll  {  it.startsWith  'a'  }.size()  ==  1   assert  list.collect  {  it.toUpperCase()  }  
                                                              ==  ['A',  'B',  'C',  'D']   assert  list.inject('')  {  a,  b  -­‐>  a  +  b  }  ==  'abcd' List definition Append an element (operator overloading)

Slide 110

Slide 110 text

Lists !43 def  list  =  ['a',  'b',  'c']   ! list  <<  'd'   assert  list.contains('d')   ! assert  list.findAll  {  it.startsWith  'a'  }.size()  ==  1   assert  list.collect  {  it.toUpperCase()  }  
                                                              ==  ['A',  'B',  'C',  'D']   assert  list.inject('')  {  a,  b  -­‐>  a  +  b  }  ==  'abcd' List definition Append an element (operator overloading) Functional-style map / filter / reduce with closures

Slide 111

Slide 111 text

Maps !44 def  map  =  [name:  'Guillaume',  age:  36]   ! map.daughters  =  ['Marion',  'Erine']   ! assert  map['daughters'].contains('Marion')

Slide 112

Slide 112 text

Maps !44 def  map  =  [name:  'Guillaume',  age:  36]   ! map.daughters  =  ['Marion',  'Erine']   ! assert  map['daughters'].contains('Marion') Map definition

Slide 113

Slide 113 text

Maps !44 def  map  =  [name:  'Guillaume',  age:  36]   ! map.daughters  =  ['Marion',  'Erine']   ! assert  map['daughters'].contains('Marion') Map definition Indexed access

Slide 114

Slide 114 text

Maps !44 def  map  =  [name:  'Guillaume',  age:  36]   ! map.daughters  =  ['Marion',  'Erine']   ! assert  map['daughters'].contains('Marion') Map definition Indexed access Property notation access

Slide 115

Slide 115 text

Regular expressions !45 def  pattern  =  ~/.*foo.*/   ! assert  "Alibaba"  ==~  /.*(ba){2}/   ! def  matcher  =  "Superman"  =~  /([A-­‐Z][a-­‐z]+)man/   assert  matcher[0][0]  ==  'Superman'   assert  matcher[0][1]  ==  'Super'   ! '75001  Paris'.find(/(\d{5})\s(\w)+/)  {  match,  zip,  town  -­‐>          println  "The  Zip  code  of  ${town}  is  ${zip}"   }

Slide 116

Slide 116 text

Regular expressions !45 def  pattern  =  ~/.*foo.*/   ! assert  "Alibaba"  ==~  /.*(ba){2}/   ! def  matcher  =  "Superman"  =~  /([A-­‐Z][a-­‐z]+)man/   assert  matcher[0][0]  ==  'Superman'   assert  matcher[0][1]  ==  'Super'   ! '75001  Paris'.find(/(\d{5})\s(\w)+/)  {  match,  zip,  town  -­‐>          println  "The  Zip  code  of  ${town}  is  ${zip}"   } Pattern

Slide 117

Slide 117 text

Regular expressions !45 def  pattern  =  ~/.*foo.*/   ! assert  "Alibaba"  ==~  /.*(ba){2}/   ! def  matcher  =  "Superman"  =~  /([A-­‐Z][a-­‐z]+)man/   assert  matcher[0][0]  ==  'Superman'   assert  matcher[0][1]  ==  'Super'   ! '75001  Paris'.find(/(\d{5})\s(\w)+/)  {  match,  zip,  town  -­‐>          println  "The  Zip  code  of  ${town}  is  ${zip}"   } Pattern Match

Slide 118

Slide 118 text

Regular expressions !45 def  pattern  =  ~/.*foo.*/   ! assert  "Alibaba"  ==~  /.*(ba){2}/   ! def  matcher  =  "Superman"  =~  /([A-­‐Z][a-­‐z]+)man/   assert  matcher[0][0]  ==  'Superman'   assert  matcher[0][1]  ==  'Super'   ! '75001  Paris'.find(/(\d{5})\s(\w)+/)  {  match,  zip,  town  -­‐>          println  "The  Zip  code  of  ${town}  is  ${zip}"   } Pattern Match Find

Slide 119

Slide 119 text

Regular expressions !45 def  pattern  =  ~/.*foo.*/   ! assert  "Alibaba"  ==~  /.*(ba){2}/   ! def  matcher  =  "Superman"  =~  /([A-­‐Z][a-­‐z]+)man/   assert  matcher[0][0]  ==  'Superman'   assert  matcher[0][1]  ==  'Super'   ! '75001  Paris'.find(/(\d{5})\s(\w)+/)  {  match,  zip,  town  -­‐>          println  "The  Zip  code  of  ${town}  is  ${zip}"   } Pattern Match Find Nice way to decompose the matched regions

Slide 120

Slide 120 text

Ranges !46 def  range  =  'a'..'z'   ! assert  range.contains('m')   assert  range.contains('z')   ! def  exclusive  =  1..<10   ! assert  !exclusive.contains(10)   ! def  reverse  =  10..0   ! assert  reverse[0]  ==  10   assert  reverse[-­‐1]  ==  0

Slide 121

Slide 121 text

Ranges !46 def  range  =  'a'..'z'   ! assert  range.contains('m')   assert  range.contains('z')   ! def  exclusive  =  1..<10   ! assert  !exclusive.contains(10)   ! def  reverse  =  10..0   ! assert  reverse[0]  ==  10   assert  reverse[-­‐1]  ==  0 Range

Slide 122

Slide 122 text

Ranges !46 def  range  =  'a'..'z'   ! assert  range.contains('m')   assert  range.contains('z')   ! def  exclusive  =  1..<10   ! assert  !exclusive.contains(10)   ! def  reverse  =  10..0   ! assert  reverse[0]  ==  10   assert  reverse[-­‐1]  ==  0 Range Excluded upper bound

Slide 123

Slide 123 text

Ranges !46 def  range  =  'a'..'z'   ! assert  range.contains('m')   assert  range.contains('z')   ! def  exclusive  =  1..<10   ! assert  !exclusive.contains(10)   ! def  reverse  =  10..0   ! assert  reverse[0]  ==  10   assert  reverse[-­‐1]  ==  0 Range Excluded upper bound Reverse range

Slide 124

Slide 124 text

Ranges !46 def  range  =  'a'..'z'   ! assert  range.contains('m')   assert  range.contains('z')   ! def  exclusive  =  1..<10   ! assert  !exclusive.contains(10)   ! def  reverse  =  10..0   ! assert  reverse[0]  ==  10   assert  reverse[-­‐1]  ==  0 Range Excluded upper bound Reverse range Negative index count from the end

Slide 125

Slide 125 text

Strings, GStrings, multiline strings !47 def  name  =  'Groovy'   def  tmpl  =  """          Dear  Mr  ${name},          You're  the  winner  of  the  lottery!          Yours  sincerly,          Dave   """   ! assert  tmpl.toString().contains('Groovy')

Slide 126

Slide 126 text

Strings, GStrings, multiline strings !47 def  name  =  'Groovy'   def  tmpl  =  """          Dear  Mr  ${name},          You're  the  winner  of  the  lottery!          Yours  sincerly,          Dave   """   ! assert  tmpl.toString().contains('Groovy') Plain java.lang.String

Slide 127

Slide 127 text

Strings, GStrings, multiline strings !47 def  name  =  'Groovy'   def  tmpl  =  """          Dear  Mr  ${name},          You're  the  winner  of  the  lottery!          Yours  sincerly,          Dave   """   ! assert  tmpl.toString().contains('Groovy') Plain java.lang.String Multiline string with expression interpolation

Slide 128

Slide 128 text

Surprising numbers... !48 System.out.println(  2.0  -­‐  1.1  );

Slide 129

Slide 129 text

Surprising numbers... !48 System.out.println(  2.0  -­‐  1.1  ); 0.8999999999999999

Slide 130

Slide 130 text

Surprising numbers... !48 System.out.println(  2.0  -­‐  1.1  ); 0.8999999999999999

Slide 131

Slide 131 text

Surprising numbers... !49 System.out.println(  3  /  2  );

Slide 132

Slide 132 text

Surprising numbers... !49 System.out.println(  3  /  2  ); 1

Slide 133

Slide 133 text

Surprising numbers... !49 System.out.println(  3  /  2  ); 1

Slide 134

Slide 134 text

BigDecimal by default! !50 assert  2.0  -­‐  1.1  ==  0.9 assert  3  /  2  ==  1.5

Slide 135

Slide 135 text

BigDecimal by default! !50 assert  2.0  -­‐  1.1  ==  0.9 assert  3  /  2  ==  1.5 One of the reasons why micro- benchmarks sometimes showed Groovy to be slow...

Slide 136

Slide 136 text

BigDecimal by default! !50 assert  2.0  -­‐  1.1  ==  0.9 assert  3  /  2  ==  1.5 One of the reasons why micro- benchmarks sometimes showed Groovy to be slow... But you can use doubles & floats for performance, with ‘d’ or ‘f’ suffixes or with explicit type

Slide 137

Slide 137 text

No content

Slide 138

Slide 138 text

Powerful switch / case on steroids

Slide 139

Slide 139 text

Powerful switch / case on steroids switch(obj)  {          case  123:                  "number  123";              break          case  "abc":              "string  abc";              break          case  String:            "is  a  string";            break          case  [1,  2,  3]:      "in  list";                    break          case  ~/.*o+.*/:      "regex  match";            break          case  {  it  <  3  }:    "closure  criteria";  break          default:                    "unknown"   }

Slide 140

Slide 140 text

Named arguments !52 move  obj,  x:  3,  y:  4

Slide 141

Slide 141 text

Named arguments !52 move  obj,  x:  3,  y:  4 Normal argument

Slide 142

Slide 142 text

Named arguments !52 move  obj,  x:  3,  y:  4 Normal argument Named argument

Slide 143

Slide 143 text

Named arguments !52 move  obj,  x:  3,  y:  4 Normal argument Named argument Calls: move(Map m, Object)

Slide 144

Slide 144 text

Command chains • Ability to chain method calls 
 without parentheses and dots !53 move  forward  at  3.km/h

Slide 145

Slide 145 text

Command chains • Ability to chain method calls 
 without parentheses and dots !53 move  forward  at  3.km/h Actually equivalent to: move(forward).at(3.getKm().div(h))

Slide 146

Slide 146 text

Named arguments & command chains !54 check  that:  vodka  tastes  good

Slide 147

Slide 147 text

Named arguments & command chains !54 check  that:  vodka  tastes  good Will call: check(that: vodka).tastes(good)

Slide 148

Slide 148 text

Multiple assignment & destructuring !55 def  (a,  b)  =  ['A',  'B']   ! (a,  b)  =  [b,  a]   ! def  (int  i,  int  j)  =  [1,  2]   ! def  geocode(String  place)  {          return  [45.4,  2.3]   }   ! def  (la,  lo)  =  geocode("Paris")   ! assert  la  ==  45.4  &&  lo  ==  2.3

Slide 149

Slide 149 text

Multiple assignment & destructuring !55 def  (a,  b)  =  ['A',  'B']   ! (a,  b)  =  [b,  a]   ! def  (int  i,  int  j)  =  [1,  2]   ! def  geocode(String  place)  {          return  [45.4,  2.3]   }   ! def  (la,  lo)  =  geocode("Paris")   ! assert  la  ==  45.4  &&  lo  ==  2.3 Classic « swap »

Slide 150

Slide 150 text

Multiple assignment & destructuring !55 def  (a,  b)  =  ['A',  'B']   ! (a,  b)  =  [b,  a]   ! def  (int  i,  int  j)  =  [1,  2]   ! def  geocode(String  place)  {          return  [45.4,  2.3]   }   ! def  (la,  lo)  =  geocode("Paris")   ! assert  la  ==  45.4  &&  lo  ==  2.3 Classic « swap » With types

Slide 151

Slide 151 text

Multiple assignment & destructuring !55 def  (a,  b)  =  ['A',  'B']   ! (a,  b)  =  [b,  a]   ! def  (int  i,  int  j)  =  [1,  2]   ! def  geocode(String  place)  {          return  [45.4,  2.3]   }   ! def  (la,  lo)  =  geocode("Paris")   ! assert  la  ==  45.4  &&  lo  ==  2.3 Classic « swap » With types Method returning a list

Slide 152

Slide 152 text

Multiple assignment & destructuring !55 def  (a,  b)  =  ['A',  'B']   ! (a,  b)  =  [b,  a]   ! def  (int  i,  int  j)  =  [1,  2]   ! def  geocode(String  place)  {          return  [45.4,  2.3]   }   ! def  (la,  lo)  =  geocode("Paris")   ! assert  la  ==  45.4  &&  lo  ==  2.3 Classic « swap » With types Method returning a list Destructuring

Slide 153

Slide 153 text

Multiple assignment and destructuring !56 class  Point  {          double  x,  y   !        double  getAt(int  idx)  {                  if  (idx  ==  0)  x                  else  if  (idx  ==  1)  y                  else  throw  new  Exception("Wrong  index")          }   }   ! def  (x,  y)  =  new  Point(x:  48.3,  y:  3.5)   ! assert  x  ==  48.3  &&  y  ==  3.5

Slide 154

Slide 154 text

Multiple assignment and destructuring !56 class  Point  {          double  x,  y   !        double  getAt(int  idx)  {                  if  (idx  ==  0)  x                  else  if  (idx  ==  1)  y                  else  throw  new  Exception("Wrong  index")          }   }   ! def  (x,  y)  =  new  Point(x:  48.3,  y:  3.5)   ! assert  x  ==  48.3  &&  y  ==  3.5 Method signature convention: getAt(int)

Slide 155

Slide 155 text

Multiple assignment and destructuring !56 class  Point  {          double  x,  y   !        double  getAt(int  idx)  {                  if  (idx  ==  0)  x                  else  if  (idx  ==  1)  y                  else  throw  new  Exception("Wrong  index")          }   }   ! def  (x,  y)  =  new  Point(x:  48.3,  y:  3.5)   ! assert  x  ==  48.3  &&  y  ==  3.5 Method signature convention: getAt(int) Transparent destructuring

Slide 156

Slide 156 text

Builders — JSON builder !57 import  groovy.json.*   ! def  json  =  new  JsonBuilder()   json.person  {          name  'Guillaume'          age  36          daughters  'Marion',  'Erine'          address  {                  street  '1  Main  Street'                  zip  75001                  city  'Paris'          }   }

Slide 157

Slide 157 text

Builders — JSON builder !57 import  groovy.json.*   ! def  json  =  new  JsonBuilder()   json.person  {          name  'Guillaume'          age  36          daughters  'Marion',  'Erine'          address  {                  street  '1  Main  Street'                  zip  75001                  city  'Paris'          }   } Hierarchical data representation

Slide 158

Slide 158 text

Builders — JSON builder !57 import  groovy.json.*   ! def  json  =  new  JsonBuilder()   json.person  {          name  'Guillaume'          age  36          daughters  'Marion',  'Erine'          address  {                  street  '1  Main  Street'                  zip  75001                  city  'Paris'          }   } Hierarchical data representation Closure blocks delimiting the structure

Slide 159

Slide 159 text

Builders — JSON builder !57 import  groovy.json.*   ! def  json  =  new  JsonBuilder()   json.person  {          name  'Guillaume'          age  36          daughters  'Marion',  'Erine'          address  {                  street  '1  Main  Street'                  zip  75001                  city  'Paris'          }   } Hierarchical data representation Closure blocks delimiting the structure { "person": { "name": "Guillaume", "age": 36, "daughters": [ "Marion", "Erine" ], "address": { "street": "1 Main Street", "zip": 75001, "city": "Paris" } } }

Slide 160

Slide 160 text

GPath expressions • GPath expressions are like XPath 
 but for an object graph !58 import  groovy.json.*   ! def  url  =  
    "https://api.github.com/repos/groovy/groovy-­‐core/commits"   ! def  commits  =  new  JsonSlurper().parseText(url.toURL().text)   ! assert  commits[0].commit.author.name  ==  'Cedric  Champeau'

Slide 161

Slide 161 text

GPath expressions • GPath expressions are like XPath 
 but for an object graph !58 import  groovy.json.*   ! def  url  =  
    "https://api.github.com/repos/groovy/groovy-­‐core/commits"   ! def  commits  =  new  JsonSlurper().parseText(url.toURL().text)   ! assert  commits[0].commit.author.name  ==  'Cedric  Champeau' GPath expression

Slide 162

Slide 162 text

GPath expressions • GPath expressions are like XPath 
 but for an object graph !58 import  groovy.json.*   ! def  url  =  
    "https://api.github.com/repos/groovy/groovy-­‐core/commits"   ! def  commits  =  new  JsonSlurper().parseText(url.toURL().text)   ! assert  commits[0].commit.author.name  ==  'Cedric  Champeau' GPath expression Add find / findAll into the mix

Slide 163

Slide 163 text

GPath expressions • GPath expressions are like XPath 
 but for an object graph !58 import  groovy.json.*   ! def  url  =  
    "https://api.github.com/repos/groovy/groovy-­‐core/commits"   ! def  commits  =  new  JsonSlurper().parseText(url.toURL().text)   ! assert  commits[0].commit.author.name  ==  'Cedric  Champeau' GPath expression Add find / findAll into the mix No (un)marshalling!

Slide 164

Slide 164 text

Power asserts !59 def  (a,  b,  c)  =  [20,  30,  40]   ! assert  a  *  (b  -­‐  1)  /  10  ==  3  *  c  /  2  +  1

Slide 165

Slide 165 text

Power asserts !59 def  (a,  b,  c)  =  [20,  30,  40]   ! assert  a  *  (b  -­‐  1)  /  10  ==  3  *  c  /  2  +  1 Assertion  failed:     ! assert  a  *  (b  -­‐  1)  /  10  ==  3  *  c  /  2  +  1                |  |    |  |        |        |        |  |  |      |                |  580|  29      58      false|  |  60    61                20      30                              |  40                                                            120   !   at  script1.run(script1.groovy:3)

Slide 166

Slide 166 text

Power asserts !59 def  (a,  b,  c)  =  [20,  30,  40]   ! assert  a  *  (b  -­‐  1)  /  10  ==  3  *  c  /  2  +  1 Assertion  failed:     ! assert  a  *  (b  -­‐  1)  /  10  ==  3  *  c  /  2  +  1                |  |    |  |        |        |        |  |  |      |                |  580|  29      58      false|  |  60    61                20      30                              |  40                                                            120   !   at  script1.run(script1.groovy:3) Invented by the Spock testing framework

Slide 167

Slide 167 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name

Slide 168

Slide 168 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name With Java, you only get an NPE. No idea where it came from!

Slide 169

Slide 169 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name With Java, you only get an NPE. No idea where it came from! Groovy will say: Cannot get property ‘name’ on null object

Slide 170

Slide 170 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name

Slide 171

Slide 171 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name o?.line?.item?.name

Slide 172

Slide 172 text

Null handling !60 class  Order  {          LineItem  line   }   class  LineItem  {          int  quantity          Item  item   }   class  Item  {          String  name   }   ! def  o  =  new  Order(          line:  new  LineItem(                  quantity:  2,                  item:  null))   ! println  o.line.item.name o?.line?.item?.name Safe navigation: will just return null; No NPE

Slide 173

Slide 173 text

No content

Slide 174

Slide 174 text

The Truth, the GroovyTruth!

Slide 175

Slide 175 text

The Truth, the GroovyTruth! And what if I could customize the truth?

Slide 176

Slide 176 text

The Groovy Truth !62 assert  !(  null  )   assert  !(    ""    )   assert  !(    []    )   assert  !(      0    ) assert  new  Object()   assert  "string"   assert  [1,  2,  3]   assert  1234

Slide 177

Slide 177 text

The Groovy Truth !62 assert  !(  null  )   assert  !(    ""    )   assert  !(    []    )   assert  !(      0    ) assert  new  Object()   assert  "string"   assert  [1,  2,  3]   assert  1234 null, empty, 0-sized, zero are coerced to false

Slide 178

Slide 178 text

The Groovy Truth !62 assert  !(  null  )   assert  !(    ""    )   assert  !(    []    )   assert  !(      0    ) assert  new  Object()   assert  "string"   assert  [1,  2,  3]   assert  1234 null, empty, 0-sized, zero are coerced to false true otherwise

Slide 179

Slide 179 text

Customizing the truth! !63 class  Account  {          String  name          boolean  disabled  =  false   !        boolean  asBoolean()  {  !disabled  }   }   ! assert    new  Account(name:  'current')   assert  !new  Account(name:  'old',  disabled:  true)

Slide 180

Slide 180 text

Customizing the truth! !63 class  Account  {          String  name          boolean  disabled  =  false   !        boolean  asBoolean()  {  !disabled  }   }   ! assert    new  Account(name:  'current')   assert  !new  Account(name:  'old',  disabled:  true) while (account), if (account), etc…

Slide 181

Slide 181 text

?:

Slide 182

Slide 182 text

The Elvis operator! ?:

Slide 183

Slide 183 text

Towards Elvis... !65

Slide 184

Slide 184 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown']

Slide 185

Slide 185 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown']

Slide 186

Slide 186 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y

Slide 187

Slide 187 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y

Slide 188

Slide 188 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y

Slide 189

Slide 189 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y x  ?  x  :  y

Slide 190

Slide 190 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y x  ?  x  :  y x  ?:  y

Slide 191

Slide 191 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y x  ?  x  :  y x  ?:  y Null, empty, zero- sized... false, otherwise true!

Slide 192

Slide 192 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y x  ?  x  :  y x  ?:  y Null, empty, zero- sized... false, otherwise true! Good old ternary operator

Slide 193

Slide 193 text

Towards Elvis... !65 def  (x,  y)  =  ['MacBook  Pro',  'unknown'] if  (x  !=  null  &&  x.size()  >  0)  x  else  y if  (x  &&  x.size())  x  else  y if  (x)  x  else  y x  ?  x  :  y x  ?:  y Null, empty, zero- sized... false, otherwise true! Good old ternary operator Elvis!

Slide 194

Slide 194 text

AST transformations • Abstract Syntax Tree – in memory representation of your program
 before being compiled into bytecode ! • AST transformation == process of transforming the AST of a program before it’s compiled ! • Macro-like compiler hook! !66

Slide 195

Slide 195 text

Lots of AST transformations... • Code generation – @ToString, @EqualsAndHashCode, @Canonical, @TupleConstructor, @InheritConstructors, @Category, @IndexedProperty, @Lazy, @Newify • Class design – @Delegate, @Immutable, @Memoized, 
 @Singleton, @Mixin • Logging – @Log, @Log4j, @Log4j2, @Slf4j !67

Slide 196

Slide 196 text

Lots of AST transformations... • Safer scripting – @ConditionalInterrupt, @ThreadInterrupt, @TimedInterupt • Compiler directives – @Field, @PackageScope, @AnnotationCollector, @DelegatesTo, @TypeChecked, @CompileStatic, @CompileDynamic • Swing patterns – @Bindable, @ListenerList, @Vetoable !68

Slide 197

Slide 197 text

Lots of AST transformations... • Dependencies handling – @Grab, @GrabConfig, @GrabExclude, @GrabResolver • Test assistance – @NotYetImplemented, @ASTTest !69

Slide 198

Slide 198 text

Immutability • Implement immutability 
 by the book ! – final class – tuple-style constructor – private final backing fields – defensive copying of collections – equals() and hashCode() methods – toString() method – ... !70

Slide 199

Slide 199 text

Immutability • Implement immutability 
 by the book ! – final class – tuple-style constructor – private final backing fields – defensive copying of collections – equals() and hashCode() methods – toString() method – ... !70 Can be error-prone to write immutable classes oneself!

Slide 200

Slide 200 text

Immutability • A Person class with – a String name – an int age !71 public final class Person {! private final String name;! private final int age;! ! public Person(String name, int age) {! this.name = name;! this.age = age;! }! ! public String getName() {! return name;! }! ! public int getAge() {! return age;! }! ! public int hashCode() {! return age + 31 * name.hashCode();! }! ! public boolean equals(Object other) {! if (other == null) {! return false;! }! if (this == other) {! return true;! }! if (Person.class != other.getClass()) {! return false;! }! Person otherPerson = (Person)other;! if (!name.equals(otherPerson.getName()) {! return false;! }! if (age != otherPerson.getAge()) {! return false;! }! return true;! }! ! public String toString() {! return "Person(" + name + ", " + age + ")";! }! }!

Slide 201

Slide 201 text

Immutability • A Person class with – a String name – an int age !71 public final class Person {! private final String name;! private final int age;! ! public Person(String name, int age) {! this.name = name;! this.age = age;! }! ! public String getName() {! return name;! }! ! public int getAge() {! return age;! }! ! public int hashCode() {! return age + 31 * name.hashCode();! }! ! public boolean equals(Object other) {! if (other == null) {! return false;! }! if (this == other) {! return true;! }! if (Person.class != other.getClass()) {! return false;! }! Person otherPerson = (Person)other;! if (!name.equals(otherPerson.getName()) {! return false;! }! if (age != otherPerson.getAge()) {! return false;! }! return true;! }! ! public String toString() {! return "Person(" + name + ", " + age + ")";! }! }! Damn verbose Java!

Slide 202

Slide 202 text

Immutability • A Person class with – a String name – an int age !71 public final class Person {! private final String name;! private final int age;! ! public Person(String name, int age) {! this.name = name;! this.age = age;! }! ! public String getName() {! return name;! }! ! public int getAge() {! return age;! }! ! public int hashCode() {! return age + 31 * name.hashCode();! }! ! public boolean equals(Object other) {! if (other == null) {! return false;! }! if (this == other) {! return true;! }! if (Person.class != other.getClass()) {! return false;! }! Person otherPerson = (Person)other;! if (!name.equals(otherPerson.getName()) {! return false;! }! if (age != otherPerson.getAge()) {! return false;! }! return true;! }! ! public String toString() {! return "Person(" + name + ", " + age + ")";! }! }! Damn verbose Java! Although it’s also a valid Groovy program!

Slide 203

Slide 203 text

@Immutable !72 import  groovy.transform.*   ! @Immutable   class  Person  {          String  name          int  age   }

Slide 204

Slide 204 text

Memoization • Cache the result of previous invocations of closures or methods with the same set 
 of argument values !73 import  groovy.transform.*   ! @Memoized   long  fib(long  n)  {          if  (n  ==  0)  0          else  if  (n  ==  1)  1          else  fib(n  -­‐  1)  +  fib(n  -­‐  2)   }   ! println  fib(40)

Slide 205

Slide 205 text

Memoization • Cache the result of previous invocations of closures or methods with the same set 
 of argument values !73 import  groovy.transform.*   ! @Memoized   long  fib(long  n)  {          if  (n  ==  0)  0          else  if  (n  ==  1)  1          else  fib(n  -­‐  1)  +  fib(n  -­‐  2)   }   ! println  fib(40) Best applied to side-effect free functions

Slide 206

Slide 206 text

No content

Slide 207

Slide 207 text

Groovy allows you to be lazy

Slide 208

Slide 208 text

Groovy allows you to be lazy The compiler will do the job for you

Slide 209

Slide 209 text

Groovy allows you to be lazy The compiler will do the job for you More concise, more readable code

Slide 210

Slide 210 text

Groovy allows you to be lazy The compiler will do the job for you More concise, more readable code Less stuff to maintain and worry about

Slide 211

Slide 211 text

@TypeChecked & @CompileStatic • Static type checking with @TypeChecked, throws compilation errors on... – typos in method and variable names – incompatible return types – wrong type assignments ! • Supports fine-grained type inference – « Least Upper Bound » – « Flow typing » !75

Slide 212

Slide 212 text

@TypeChecked & @CompileStatic • Static type checking with @TypeChecked, throws compilation errors on... – typos in method and variable names – incompatible return types – wrong type assignments ! • Supports fine-grained type inference – « Least Upper Bound » – « Flow typing » !75 You can even extend the static type checker!

Slide 213

Slide 213 text

@TypeChecked & @CompileStatic • Static type checking with @TypeChecked, throws compilation errors on... – typos in method and variable names – incompatible return types – wrong type assignments ! • Supports fine-grained type inference – « Least Upper Bound » – « Flow typing » !75 You can even extend the static type checker! Type check DSLs or dynamic features!

Slide 214

Slide 214 text

@TypeChecked & @CompileStatic ! • What is type checked can also be compiled statically with @CompileStatic ! – generate the same bytecode as javac ! – same performance as Java !76

Slide 215

Slide 215 text

Static compilation performance !77 Fibonacci Pi (π) quadrature Binary
 trees Java 191 ms 97 ms 3.6 s Static
 compilation 197 ms 101 ms 4.3 s Primitive optimizations 360 ms 111 ms 23.7 s No prim.
 optimizations 2590 ms 3220 ms 50.0 s 1.7 1.8 2.x

Slide 216

Slide 216 text

Superb community! Part 3

Slide 217

Slide 217 text

A blossoming Ecosystem

Slide 218

Slide 218 text

No content

Slide 219

Slide 219 text

No content

Slide 220

Slide 220 text

No content

Slide 221

Slide 221 text

No content

Slide 222

Slide 222 text

GVM

Slide 223

Slide 223 text

No content

Slide 224

Slide 224 text

GVM

Slide 225

Slide 225 text

GVM GROOVY ENVIRONMENT MANAGER

Slide 226

Slide 226 text

GVM: Groovy enVironment Manager • The new kid on the block – http://gvmtool.net/ — @gvmtool ! • Manage parallel versions 
 of the various ecosystem projects ! • Supports... – Groovy, Grails, Griffon, Gradle, Vert.x, Spring Boot ! • On Linux, MacOS, Cygwin, Solaris, FreeBSD !86

Slide 227

Slide 227 text

No content

Slide 228

Slide 228 text

I’m Spock...

Slide 229

Slide 229 text

I’m Spock... ...the Spock testing framework

Slide 230

Slide 230 text

I’m Spock... ...the Spock testing framework

Slide 231

Slide 231 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   }

Slide 232

Slide 232 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   } @Grab a dependency

Slide 233

Slide 233 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   } @Grab a dependency Meaningful test method names

Slide 234

Slide 234 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   } @Grab a dependency Meaningful test method names Clever use of labels for BDD style

Slide 235

Slide 235 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   } @Grab a dependency Meaningful test method names Clever use of labels for BDD style Expression to be asserted

Slide 236

Slide 236 text

Spock example !88 @Grab('org.spockframework:spock-­‐core:0.7-­‐groovy-­‐2.0')   import  spock.lang.*   ! class  MathSpec  extends  Specification  {          def  "maximum  of  two  numbers"()  {              expect:                  Math.max(a,  b)  ==  c   !            where:                  a  |  b  ||  c                  1  |  3  ||  3                  7  |  4  ||  4                  0  |  0  ||  0          }   } @Grab a dependency Meaningful test method names Clever use of labels for BDD style Expression to be asserted Cute data- driven tests!

Slide 237

Slide 237 text

No content

Slide 238

Slide 238 text

@GrabResolver("https://oss.jfrog.org/artifactory/repo")   @Grab("org.ratpack-­‐framework:ratpack-­‐groovy:0.9.0-­‐SNAPSHOT")   import  static  org.ratpackframework.groovy.RatpackScript.ratpack   import  static  org.ratpackframework.groovy.Template.groovyTemplate   ! ratpack  {          handlers  {                  get  {                          response.send  "Welcome!"                  }   !                get("date")  {                          render  groovyTemplate("date.html")                  }   !                assets  "public"          }   }

Slide 239

Slide 239 text

@GrabResolver("https://oss.jfrog.org/artifactory/repo")   @Grab("org.ratpack-­‐framework:ratpack-­‐groovy:0.9.0-­‐SNAPSHOT")   import  static  org.ratpackframework.groovy.RatpackScript.ratpack   import  static  org.ratpackframework.groovy.Template.groovyTemplate   ! ratpack  {          handlers  {                  get  {                          response.send  "Welcome!"                  }   !                get("date")  {                          render  groovyTemplate("date.html")                  }   !                assets  "public"          }   } Lightweight Netty-based web app toolkit

Slide 240

Slide 240 text

Geb • Browser automation solution ! • WebDriver + jQuery selectors + Groovy ! • Handy for – scripting, scraping, automation... – functional / web / acceptance testing •when integrated with JUnit, TestNG or Spock !90

Slide 241

Slide 241 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }  

Slide 242

Slide 242 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }   Drive the browser to this site

Slide 243

Slide 243 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }   Drive the browser to this site Check the content of the title

Slide 244

Slide 244 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }   Drive the browser to this site Check the content of the title Find & fill in the form

Slide 245

Slide 245 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }   Drive the browser to this site Check the content of the title Find & fill in the form Submit the form

Slide 246

Slide 246 text

Geb — Example !91 import  geb.Browser   ! Browser.drive  {          go  "http://myapp.com/login"   !        assert  $("h1").text()  ==  "Please  Login"   !        $("form.login").with  {                  username  =  "admin"                  password  =  "password"                  login().click()          }   !        assert  $("h1").text()  ==  
                "Admin  Section"   }   Drive the browser to this site Check the content of the title Find & fill in the form Submit the form In the admin section, yeah!

Slide 247

Slide 247 text

Geb — With page objects and Spock !92 import  geb.spock.GebSpec   ! class  GoogleWikipediaSpec  extends  GebSpec  {   !        def  "first  result  for  wikipedia  search  should  be  wikipedia"()  {                  given:                  to  GoogleHomePage   !                expect:                  at  GoogleHomePage   !                when:                  search.field.value("wikipedia")   !                then:                  waitFor  {  at  GoogleResultsPage  }   !                and:                  firstResultLink.text()  ==  "Wikipedia"   !                when:                  firstResultLink.click()   !                then:                  waitFor  {  at  WikipediaPage  }          }   }

Slide 248

Slide 248 text

Geb — With page objects and Spock !92 import  geb.spock.GebSpec   ! class  GoogleWikipediaSpec  extends  GebSpec  {   !        def  "first  result  for  wikipedia  search  should  be  wikipedia"()  {                  given:                  to  GoogleHomePage   !                expect:                  at  GoogleHomePage   !                when:                  search.field.value("wikipedia")   !                then:                  waitFor  {  at  GoogleResultsPage  }   !                and:                  firstResultLink.text()  ==  "Wikipedia"   !                when:                  firstResultLink.click()   !                then:                  waitFor  {  at  WikipediaPage  }          }   } With page objects

Slide 249

Slide 249 text

Geb — With page objects and Spock !92 import  geb.spock.GebSpec   ! class  GoogleWikipediaSpec  extends  GebSpec  {   !        def  "first  result  for  wikipedia  search  should  be  wikipedia"()  {                  given:                  to  GoogleHomePage   !                expect:                  at  GoogleHomePage   !                when:                  search.field.value("wikipedia")   !                then:                  waitFor  {  at  GoogleResultsPage  }   !                and:                  firstResultLink.text()  ==  "Wikipedia"   !                when:                  firstResultLink.click()   !                then:                  waitFor  {  at  WikipediaPage  }          }   } With page objects BDD style: given/when/then

Slide 250

Slide 250 text

Geb — With page objects and Spock !92 import  geb.spock.GebSpec   ! class  GoogleWikipediaSpec  extends  GebSpec  {   !        def  "first  result  for  wikipedia  search  should  be  wikipedia"()  {                  given:                  to  GoogleHomePage   !                expect:                  at  GoogleHomePage   !                when:                  search.field.value("wikipedia")   !                then:                  waitFor  {  at  GoogleResultsPage  }   !                and:                  firstResultLink.text()  ==  "Wikipedia"   !                when:                  firstResultLink.click()   !                then:                  waitFor  {  at  WikipediaPage  }          }   } With page objects BDD style: given/when/then Wait for slow loading pages

Slide 251

Slide 251 text

Summary Part 4

Slide 252

Slide 252 text

Java’s best friend • Java derived syntax –Flat learning curve –Easy to learn • But goes beyond Java –Concise, expressive, readable –Fit for Domain-Specific Languages • Seamless & transparent Java integration –Mix & match Groovy & Java classes (joint compil.) –No language barrier to cross !94

Slide 253

Slide 253 text

Groovy’s nature ! • Object oriented dynamic language... ! • But... – as type safe as you want it — static type checking – as fast as you need it — static compilation – as functional as you make it — closures... !95

Slide 254

Slide 254 text

Groovy use cases • Scripting tasks, build automation • Extension points for customizing/configuring apps • Business languages & Domain-Specific Languages • Full blown apps – for desktop with Griffon – for the web with Grails, Ratpack, Gaelyk – for web reactive programming with Reactor !96

Slide 255

Slide 255 text

Thanks! Q & A Part 5