SlideShare une entreprise Scribd logo
1  sur  37
Télécharger pour lire hors ligne
1
              Groovy and Grails




                 What are they, and what are
                   the benefits and risks?



JUG Padova, 17 May 2008
2
              Who am I?

                John Leach, Chief Technical Officer for Syger
                   Java developer from the start – and still learning
                Syger - a small software consultancy in Verona, Italy

              Who are you?
                Who's heard of Groovy?
                Who's heard of Grails?
                Who writes web applications?

              Pleased to meet you
                Warning! Intensive content session
                  Lots to see, not much time
                Questions at the end

JUG Padova, 17 May 2008
3
              Overview of


                          Dynamic scripting language
                          Similar syntax to Java
                          Evolution not revolution

                          But...
                             with closures
                             and meta programming
                             and relaxed typing
                             and lots of syntax sugar
                             and a silly name - sigh




JUG Padova, 17 May 2008
4
              Overview of


       Ruby on Rails philosophy – evolution not revolution
       Convention over configuration
       Uses 20% Groovy and 80% Java (elegance and power)

       But...
          with Spring, Hibernate, and SiteMesh
          has a plugin architecture
          no XML (though it's there when you need it)
          no HQL/SQL (though they're there when you need them)
          no Ruby, JRuby or Rails




JUG Padova, 17 May 2008
5
              Java to Groovy – Step 1 HelloWorld.groovy

                public class HelloWorld {
                  private String name;

                    public void setName(String name) {
                      this.name = name;
                    }
                    public String getName() {
                      return name;
                    }
                    public String greet() {
                      return quot;Hello quot; + name;
                    }
                    public static void main(String... args) {
                      HelloWorld helloWorld = new HelloWorld();
                      helloWorld.setName(quot;Groovyquot;);
                      System.out.println(helloWorld.greet());
                    }
                }

JUG Padova, 17 May 2008
6
              Java to Groovy – Step 2 HelloWorld.groovy

                class HelloWorld {
                  String name

                    String greet() {
                      return quot;Hello quot; + name
                    }

                    static void main(String... args) {
                      HelloWorld helloWorld = new HelloWorld()
                      helloWorld.name = 'Groovy'
                      println(helloWorld.greet())
                    }
                }




JUG Padova, 17 May 2008
7
              Java to Groovy – Step 3 HelloWorld.groovy

                class HelloWorld {
                  String name

                    String greet() {
                      quot;Hello ${name}quot;
                    }

                    static void main(String... args) {
                      println new HelloWorld(name: 'Groovy').greet()
                    }
                }

                           Plain Ordinary Groovy Objects
                              Reduced clutter
                              Simple constructors
     Adapted from: http://groovy.dzone.com/news/java-groovy-few-easy-steps


JUG Padova, 17 May 2008
8
              Java to Groovy – Check HelloWorld.class

 Groovy: JUGPadova>groovy HelloWorld.groovy
          Hello Groovy

   Java: JUGPadova>groovyc HelloWorld.groovy
          JUGPadova>java -cp %GROOVY_HOME%embeddablegroovy-all-1.5.4.jar;.
           HelloWorld
          Hello Groovy

  Javap: JUGPadova>javap HelloWorld
          Compiled from quot;HelloWorld.groovyquot;
          public class HelloWorld extends java.lang.Object
                  implements groovy.lang.GroovyObject {
              public HelloWorld();
              public java.lang.String greet();
              public java.lang.String getName();
              public void setName(java.lang.String);
              public static java.lang.Object main(java.lang.String[]);
              ...
          }


JUG Padova, 17 May 2008
9
              Groovy Closures – Step 1 ListTests.groovy
import   static java.lang.System.out;
import   static java.util.Arrays.asList;
import   java.util.ArrayList;
import   java.util.List;

public class ListTests {
   public static void main(String... args) {
     List<String> names = asList(quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;);
     out.println(names.getClass().toString() + quot; quot; + names);
     List<String> shortNames = new ArrayList<String>();
     for(String s : names) {
        if (s.length() < 4) {        JUGPadova>groovy ListTests.groovy
          shortNames.add(s);         class java.util.Arrays$ArrayList
        }                              [quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;]
     }                               3
     out.println(shortNames.size()); Ted
     for(String s : shortNames) {    Jed
        out.println(s);              Ned
     }
   }
} JUG Padova, 17 May 2008
10
              Groovy Closures – Step 2 ListTests.groovy

        class ListTests {
          static void main(String... args) {
            List<String> names = ['Ted', 'Fred', 'Jed', 'Ned']
            println quot;${names.class} ${names}quot;
            List<String> shortNames = new ArrayList()
            for(String s : names) {
              if (s.length() < 4) {
                shortNames << s
              }
            }
            println shortNames.size()
            shortNames.each { println it }
          }
        }




JUG Padova, 17 May 2008
11
              Groovy Closures – Step 3 ListTests.groovy

       List<String> names = ['Ted', 'Fred', 'Jed', 'Ned']
       println quot;${names.class} ${names}quot;
       List<String> shortNames = names.findAll { it.length() < 4 }
       println shortNames.size()
       shortNames.each { println it }
         JUGPadova>groovy ListTests.groovy
         class java.util.ArrayList [quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;]
         3
         Ted
         Jed
         Ned
                          Idiomatic Groovy
                              Reduced clutter
                              Simple concise syntax
  Adapted from: http://groovy.dzone.com/news/java-groovy-part-2-closures-an


JUG Padova, 17 May 2008
12
              Meta Object Protocol - MOP

         Introspection:
           MyClass.metaClass.methods.each { println it.name }
           MyClass.metaClass.properties.each { println it.name }
           MyClass.metaClass.respondsTo(obj, 'execute')
           MyClass.metaClass.hasProperty(obj, 'status')

         Dynamic method invocation:
           obj.quot;$namequot;()

         Dynamic property getters and setters:
           Object value = obj.quot;$namequot;
           obj.quot;$namequot; = value



JUG Padova, 17 May 2008
13
              Meta Object Protocol - MOP


Intercepting (Aspect Oriented Programming)
  def invokeMethod = { String name, args -> println quot;$name invokedquot; }
  def getProperty = { String name -> println quot;getting $namequot; }
  def setProperty = { String name, value -> println quot;setting $namequot; }

Changing behaviour at run time:
  def methodMissing = { String name, args -> quot;No $name methodquot; }
  def propertyMissing = { String name -> quot;No $name propertyquot; }
  Duck.metaClass.quack = { quot;Quack!quot; } // duck.quack()
  Duck.metaClass.getSpecies = { -> quot;Canardquot; } // duck.species




JUG Padova, 17 May 2008
14
              Domain Specific Language: AntBuilder

 AntBuilder ant = new AntBuilder()
 String myDir = 'target/AntTest/'
 ant.sequential {
   echo('inside sequential')
   mkdir(dir: myDir)
   copy(todir: myDir) {
     fileset(dir: 'src/test') {
       include(name: '**/*.groovy')
     }
   }
   echo('done')
 }
 File file = new File('target/AntTest/groovy/util/AntTest.groovy')
 assert file.exists() // yes it does
         Adapted from:    http://groovy.codehaus.org/Using+Ant+from+Groovy

     Gant – Groovy, Ant, but no XML: http://gant.codehaus.org/

JUG Padova, 17 May 2008
15
              Domain Specific Language: MarkupBuilder

   Groovy snippet:
    MarkupBuilder xml = new MarkupBuilder(writer)
    xml.'rec:records'('xmlns:rec':'http://groovy.codehaus.org') {
      car(name:'HSV Maloo', make:'Holden', year:2006) {
        country('Australia')
        record(type:'speed', ' Truck with speed of 271kph')
      }
    }

   Output snippet:
    <rec:records xmlns:rec='http://groovy.codehaus.org'>
      <car name='HSV Maloo' make='Holden' year='2006'>
        <country>Australia</country>
        <record type='speed'> Truck with speed of 271kph</record>
      </car>
    </rec:records>
  Adapted from: http://groovy.codehaus.org/Creating+XML+using+Groovy's+MarkupBuilder


JUG Padova, 17 May 2008
16
              But Wait, there's More!

Ranges – 0..9, 0.<10
Curried closures
Regular expression syntax sugar - /d+/
Extended switch operator – switch(title) { case 'Groovy': ...
Operator overloading – list << item
Elvis operator – value = value ?: defaultValue;
Safe dereferencing - person?.parents?.grandParents
The Expando class – saves writing a 'real' class
Unit testing, the Groovy Mock Library
SwingBuilder
Joint compiler (compile Groovy and Java source code together)
...
But we don't have time for all that now

JUG Padova, 17 May 2008
17
              Groovy – the Good News

Past the version 1.0 barrier (2 Jan 2007)

IDE support is maturing (Eclipse, NetBeans, and IntelliJ IDEA)

Being used in industry

Currently around 30th place according to TIOBE (http://www.tiobe.com)

G2One Inc., support from the Lead developer (Guillaume Laforge)

IBM Project Zero

“Drill down” to Java when you need the speed


JUG Padova, 17 May 2008
18
              Groovy – the Bad News




                 IDE support is still maturing

                 Slow execution speed (but not s-l-o-w)

                 Idiomatic Groovy is not Java

                 Won't get you a Job




JUG Padova, 17 May 2008
19
              Groovy – the Fear, Uncertainty, and Doubt



          Interpreted language – no, compiled to Java bytecode

          Not a standard – no, JSR 241

          Orphan project – no Sun, Oracle, IBM, IntelliJ support

          Usurping Java – no, augmenting Java

          No Groovy programmers – no, most Java programmers
             should understand it




JUG Padova, 17 May 2008
20
              Pragmatic Groovy



          Start in places where execution speed is less important:

              Build scripts – AntBuilder, Gant

              Unit testing, and mocking

              Swing User Interfaces – SwingBuilder

              Domain Specific Languages




JUG Padova, 17 May 2008
21
              Grails – What's in the Box?


                   Generators
                   Predefined application layout (folders)
                   Model View Controller pattern - surprise!
                   GORM – Hibernate made easy
                   Spring and Spring MVC under the covers
                   SiteMesh powering the views
                   Groovy Server Pages (GSP)
                   Tag Libraries but no XML
                   Plug-in architecture
                   Testing – unit, integration, web
                   Excellent, concise documentation



JUG Padova, 17 May 2008
22
               Generators

         grails create-app     Creates (and populates) the application directories
grails create-domain-class     Creates an empty domain (model) class
     grails create-service     Creates a transactional business logic class
     grails create-tag-lib     Creates an empty tag library class
   grails create-unit-test     Creates a unit test class
grails generate-controller     Generates a CRUD controller class for a domain class
     grails generate-views     Generates the four CRUD views for a domain class
            grails run-app     Runs the web application in Jetty
           grails test-app     Runs the unit tests
            grails console     Runs the Grails Swing interactive console
              grails shell     Runs the Grails interactive shell
                grails war     Creates a war file for JEE deployment
             Run grails create-app, then grails run-app,
 and you've got an (empty) running web application, in less than 30 seconds
                   You'll still have to write some code yourself

 JUG Padova, 17 May 2008
23
               Domain Models
class Album {                             class Picture {
  User user                                User user
  String caption                           Album album
  String description               POGO    Set images
  Set pictures                             String file
                                           String caption

                                Associations
  static belongsTo = User                  static belongsTo = [ User, Album ]
  static hasMany = [ pictures:Picture ]    static hasMany = [ images:Image ]


  static constraints = {
                            Validation     Transient properties
    caption(size:1..40, blank:false)       static transients = [ 'file' ]
  }

                      Object Relational Mapping
  static mapping = {                      static mapping = {
    pictures cascade:'all', inverse:true    images cascade:'all', inverse:true
    description type:'text'               }
    user index:'user_idx', unique:false }
  }
} JUG Padova, 17 May 2008
24
              Views

                                            views/layouts/main.gsp
     <!DOCTYPE html ... >
     <html xmlns=quot;http://www.w3.org/1999/xhtmlquot;>
       <head>
         <title><g:layoutTitle default=quot;WebAlbumquot; /></title>
         <link rel=quot;stylesheetquot; type=quot;text/cssquot;
           href=quot;${createLinkTo(dir:'css', file:'main.css')}quot;/>
         <g:layoutHead />
       </head>
       <body>
         <div class='title'>WebAlbum</div>
         <div class='content'>
           <g:layoutBody />
         </div>
       </body>
     </html>



JUG Padova, 17 May 2008
25
            Views
<html>
  <head>
    <meta name=quot;layoutquot; content=quot;mainquot; /> views/picture/create.gsp
    <title>WebAlbum : Create Picture</title>            <g:layoutTitle />
    <script type=quot;text/javascriptquot;> ... </script>
  </head>                                               <g:layoutHead />
  <body>
    <h1>Create Picture</h1>                             <g:layoutBody />
       <g:uploadForm action=quot;savequot;>
              ...
         <td valign=quot;topquot; class=quot;namequot;>
            <label for=quot;captionquot;>Caption:</label>
         </td>
         <td valign=quot;topquot; class=quot;valuequot;>
            <input type=quot;textquot; size=quot;40quot; maxlength=quot;40quot;
               id=quot;captionquot; name=quot;captionquot;
               value=quot;${fieldValue(bean: picture, field: 'caption')}quot;/>
         </td>
              ...
       </g:uploadForm>                           domain/Picture.groovy
  </body>
</html>
 JUG Padova, 17 May 2008
26
              Controllers

class PictureController {

    def list = {
      [list:Picture.list(params), paginateCount:Picture.count()]
    }

    def show = {
      Picture picture = Picture.get(params.id)
      if (!picture) {
        flash.message = quot;Picture not foundquot;
        redirect(action:list)
      }
      else {
        return [picture:picture]
      }
    }
    ...
}

JUG Padova, 17 May 2008
27
              Controllers

class PictureController {

    def beforeInterceptor = [ action:this.&intercept, only:['create']]

    def create = {
      ...
    }

    def intercept() {
      User user = sessionUser()
      if (!user || user.albumsCount == 0) {
        flash.warning = quot;You must create an album first!quot;
        redirect(controller: 'album', action: 'create')
        return false
      }
      true
    }
}

JUG Padova, 17 May 2008
28
              Tag Libraries

                                           views/picture/show.gsp


...
<tr class=quot;propquot;>
  <td valign=quot;topquot; class=quot;namequot;>Caption:</td>
  <td valign=quot;topquot; class=quot;valuequot;>
    <wa:pictureAnchor picture=quot;${picture}quot; size=quot;${Image.Original}quot;>
      ${picture.caption ?: '...'}
    </wa:pictureAnchor>
  </td>
</tr>
...




JUG Padova, 17 May 2008
29
              Tag Libraries

class WebAlbumTagLib {                 taglib/WebAlbumTagLib.groovy
    static namespace = quot;waquot;

    def pictureAnchor = { attrs, body ->
      Picture picture = attrs.remove('picture')
      def size = attrs.remove('size')
      String link = createPictureLink(picture.id, size).encodeAsHTML()
      out << quot;<a href=quot;${link}quot;quot;
      attrs.each { key, value ->
        out << quot; $key=quot;$valuequot;quot;
      }
      out << '>'
      out << body()
      out << '</a>'
    }
    ...
}

JUG Padova, 17 May 2008
30
              But Wait, there's More!

Filters – conf/WebAlbumFilter.groovy
Create Gant scripts – scripts/CompileSources.groovy
GORM many-to-many, composition, inheritance, eager fetching, ...
GORM dynamic finders – findByFirstNameAndLastName(...)
GORM transactions – User.withTransaction { status -> ... }
Controller chaining
Shared templates
URL mappings - quot;/salequot;(controller:'product', action:'sale')
Multiple request conversations – Web Flow
Ajax support – Prototype, Dojo, Yahoo UI, GWT
Content negotiation
Web Services – REST and SOAP
...
But we don't have time for all that now

JUG Padova, 17 May 2008
31
              Grails – the Good News



    Past the version 1.0 barrier (4 Feb 2008)

    IDE support is maturing (Eclipse, NetBeans, and IntelliJ IDEA)

    Being used in industry

    G2One Inc., support from the Lead developer (Graeme Rocher)

    “Drill down” to Java when you need to




JUG Padova, 17 May 2008
32
              Grails – the Bad News




                  IDE support is still maturing

                  Slow execution speed (but not s-l-o-w)

                  Won't get you a Job




JUG Padova, 17 May 2008
33
               Grails – the Fear, Uncertainty, and Doubt


 Another Rails clone – no, uses the philosophy in a Groovy/Java way

 Built with an interpreted language (Groovy) – no, 20% Groovy which
    compiles to bytecode anyway

 No Grails programmers – no, see no Groovy programmers

 Only good for CRUD applications – no, you can do any full stack JEE
    application, SOAP and REST included

 Much slower than JEE – no, Sun engineers results showed JEE
   to be 2 to 4 times faster with 100 to 500 concurrent users
     http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-9535&yr=2007&track=9




JUG Padova, 17 May 2008
34
              Pragmatic Grails



          Start in places where execution speed is less important:

              In-house web applications

              “Long tail” applications (10 – 50 concurrent users)

              Prototyping a JEE web application




JUG Padova, 17 May 2008
35
              What's Next?



 Groovy: http://groovy.codehaus.org/
 Grails: http://grails.org/
 About Groovy: http://aboutgroovy.com/
 Groovy Zone: http://groovy.dzone.com/
 InfoQ Groovy: http://www.infoq.com/groovy
 InfoQ Grails: http://www.infoq.com/grails
 Graeme Rocher's blog: http://graemerocher.blogspot.com/
 Guillaume Laforge's blog: http://glaforge.free.fr/weblog/
 G2One Inc.: http://www.g2one.com/index.html




JUG Padova, 17 May 2008
36
              Read the Books, Watch the Movies



   Books:
     Groovy Recipes: http://pragprog.com/titles/sdgrvr
     Programming Groovy: http://pragprog.com/titles/vslg
     Groovy in Action: http://www.manning.com/koenig/
     The Definitive Guide to Grails:
         http://www.apress.com/book/view/1590597583

   Films:
       Grails eXchange 2007: http://grails-exchange.com/




JUG Padova, 17 May 2008
37
              Thank You, any Questions?


                Syger: http://www.syger.it/

Grails WebAlbum:
  http://www.syger.it/Tutorials/GrailsWebAlbum.html

Ruby on Rails WebAlbum (a comparison, written first):
  http://www.syger.it/Tutorials/RubyOnRailsWebAlbum.html

            My personal site: http://www.jhl.it/

                Contact: john.leach@syger.it



JUG Padova, 17 May 2008

Contenu connexe

Tendances

The world of gradle - an introduction for developers
The world of gradle  - an introduction for developersThe world of gradle  - an introduction for developers
The world of gradle - an introduction for developersTricode (part of Dept)
 
淺談 Groovy 與 AWS 雲端應用開發整合
淺談 Groovy 與 AWS 雲端應用開發整合淺談 Groovy 與 AWS 雲端應用開發整合
淺談 Groovy 與 AWS 雲端應用開發整合Kyle Lin
 
GTAC Boosting your Testing Productivity with Groovy
GTAC Boosting your Testing Productivity with GroovyGTAC Boosting your Testing Productivity with Groovy
GTAC Boosting your Testing Productivity with GroovyAndres Almiray
 
Gradle - time for another build
Gradle - time for another buildGradle - time for another build
Gradle - time for another buildIgor Khotin
 
Java Bytecode For Discriminating Developers - GeeCON 2011
Java Bytecode For Discriminating Developers - GeeCON 2011Java Bytecode For Discriminating Developers - GeeCON 2011
Java Bytecode For Discriminating Developers - GeeCON 2011Anton Arhipov
 
Gradle - time for a new build
Gradle - time for a new buildGradle - time for a new build
Gradle - time for a new buildIgor Khotin
 
The Gradle in Ratpack: Dissected
The Gradle in Ratpack: DissectedThe Gradle in Ratpack: Dissected
The Gradle in Ratpack: DissectedDavid Carr
 
Java Bytecode for Discriminating Developers - JavaZone 2011
Java Bytecode for Discriminating Developers - JavaZone 2011Java Bytecode for Discriminating Developers - JavaZone 2011
Java Bytecode for Discriminating Developers - JavaZone 2011Anton Arhipov
 
Android code puzzlers + tips & tricks
Android code puzzlers + tips & tricksAndroid code puzzlers + tips & tricks
Android code puzzlers + tips & tricksNLJUG
 
Integration tests: use the containers, Luke!
Integration tests: use the containers, Luke!Integration tests: use the containers, Luke!
Integration tests: use the containers, Luke!Roberto Franchini
 
Managing user's data with Spring Session
Managing user's data with Spring SessionManaging user's data with Spring Session
Managing user's data with Spring SessionDavid Gómez García
 
Using Grails to power your electric car
Using Grails to power your electric carUsing Grails to power your electric car
Using Grails to power your electric carMarco Pas
 
Enterprise Guice 20090217 Bejug
Enterprise Guice 20090217 BejugEnterprise Guice 20090217 Bejug
Enterprise Guice 20090217 Bejugrobbiev
 
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, how
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, howTomasz Polanski - Automated mobile testing 2016 - Testing: why, when, how
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, howTomasz Polanski
 
Async task, threads, pools, and executors oh my!
Async task, threads, pools, and executors oh my!Async task, threads, pools, and executors oh my!
Async task, threads, pools, and executors oh my!Stacy Devino
 
Web components with java by Haijian Wang
Web components with java by Haijian WangWeb components with java by Haijian Wang
Web components with java by Haijian WangGWTcon
 
OrientDB - The 2nd generation of (multi-model) NoSQL
OrientDB - The 2nd generation of  (multi-model) NoSQLOrientDB - The 2nd generation of  (multi-model) NoSQL
OrientDB - The 2nd generation of (multi-model) NoSQLRoberto Franchini
 
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?Moritz Beller
 
Performance #1: Memory
Performance #1: MemoryPerformance #1: Memory
Performance #1: MemoryYonatan Levin
 

Tendances (20)

The world of gradle - an introduction for developers
The world of gradle  - an introduction for developersThe world of gradle  - an introduction for developers
The world of gradle - an introduction for developers
 
淺談 Groovy 與 AWS 雲端應用開發整合
淺談 Groovy 與 AWS 雲端應用開發整合淺談 Groovy 與 AWS 雲端應用開發整合
淺談 Groovy 與 AWS 雲端應用開發整合
 
GTAC Boosting your Testing Productivity with Groovy
GTAC Boosting your Testing Productivity with GroovyGTAC Boosting your Testing Productivity with Groovy
GTAC Boosting your Testing Productivity with Groovy
 
Gradle - time for another build
Gradle - time for another buildGradle - time for another build
Gradle - time for another build
 
Java Bytecode For Discriminating Developers - GeeCON 2011
Java Bytecode For Discriminating Developers - GeeCON 2011Java Bytecode For Discriminating Developers - GeeCON 2011
Java Bytecode For Discriminating Developers - GeeCON 2011
 
Gradle - time for a new build
Gradle - time for a new buildGradle - time for a new build
Gradle - time for a new build
 
The Gradle in Ratpack: Dissected
The Gradle in Ratpack: DissectedThe Gradle in Ratpack: Dissected
The Gradle in Ratpack: Dissected
 
Java Bytecode for Discriminating Developers - JavaZone 2011
Java Bytecode for Discriminating Developers - JavaZone 2011Java Bytecode for Discriminating Developers - JavaZone 2011
Java Bytecode for Discriminating Developers - JavaZone 2011
 
Android code puzzlers + tips & tricks
Android code puzzlers + tips & tricksAndroid code puzzlers + tips & tricks
Android code puzzlers + tips & tricks
 
Integration tests: use the containers, Luke!
Integration tests: use the containers, Luke!Integration tests: use the containers, Luke!
Integration tests: use the containers, Luke!
 
Managing user's data with Spring Session
Managing user's data with Spring SessionManaging user's data with Spring Session
Managing user's data with Spring Session
 
Using Grails to power your electric car
Using Grails to power your electric carUsing Grails to power your electric car
Using Grails to power your electric car
 
Enterprise Guice 20090217 Bejug
Enterprise Guice 20090217 BejugEnterprise Guice 20090217 Bejug
Enterprise Guice 20090217 Bejug
 
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, how
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, howTomasz Polanski - Automated mobile testing 2016 - Testing: why, when, how
Tomasz Polanski - Automated mobile testing 2016 - Testing: why, when, how
 
Async task, threads, pools, and executors oh my!
Async task, threads, pools, and executors oh my!Async task, threads, pools, and executors oh my!
Async task, threads, pools, and executors oh my!
 
Web components with java by Haijian Wang
Web components with java by Haijian WangWeb components with java by Haijian Wang
Web components with java by Haijian Wang
 
OrientDB - The 2nd generation of (multi-model) NoSQL
OrientDB - The 2nd generation of  (multi-model) NoSQLOrientDB - The 2nd generation of  (multi-model) NoSQL
OrientDB - The 2nd generation of (multi-model) NoSQL
 
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?
Modern Code Reviews in Open-Source Projects: Which Problems Do They Fix?
 
Performance #1: Memory
Performance #1: MemoryPerformance #1: Memory
Performance #1: Memory
 
GWT Reloaded
GWT ReloadedGWT Reloaded
GWT Reloaded
 

En vedette

Socially Networked Arts Groups
Socially Networked Arts GroupsSocially Networked Arts Groups
Socially Networked Arts GroupsJaki Levy
 
Passover 2011
Passover 2011Passover 2011
Passover 2011Jaki Levy
 
Ideas for Developing Financial Resources
Ideas for Developing Financial ResourcesIdeas for Developing Financial Resources
Ideas for Developing Financial ResourcesNew World Foundation
 
Backup e restore - rdiff backup
Backup e restore - rdiff backupBackup e restore - rdiff backup
Backup e restore - rdiff backupJohn Leach
 
Soundstreams Presentation by Jaki Levy
Soundstreams Presentation by Jaki LevySoundstreams Presentation by Jaki Levy
Soundstreams Presentation by Jaki LevyJaki Levy
 
Social Media for Small Businesses
Social Media for Small BusinessesSocial Media for Small Businesses
Social Media for Small BusinessesJaki Levy
 

En vedette (6)

Socially Networked Arts Groups
Socially Networked Arts GroupsSocially Networked Arts Groups
Socially Networked Arts Groups
 
Passover 2011
Passover 2011Passover 2011
Passover 2011
 
Ideas for Developing Financial Resources
Ideas for Developing Financial ResourcesIdeas for Developing Financial Resources
Ideas for Developing Financial Resources
 
Backup e restore - rdiff backup
Backup e restore - rdiff backupBackup e restore - rdiff backup
Backup e restore - rdiff backup
 
Soundstreams Presentation by Jaki Levy
Soundstreams Presentation by Jaki LevySoundstreams Presentation by Jaki Levy
Soundstreams Presentation by Jaki Levy
 
Social Media for Small Businesses
Social Media for Small BusinessesSocial Media for Small Businesses
Social Media for Small Businesses
 

Similaire à Groovy And Grails JUG Padova

Groovy And Grails JUG Sardegna
Groovy And Grails JUG SardegnaGroovy And Grails JUG Sardegna
Groovy And Grails JUG SardegnaJohn Leach
 
Apache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemApache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemKostas Saidis
 
Eclipsecon08 Introduction To Groovy
Eclipsecon08 Introduction To GroovyEclipsecon08 Introduction To Groovy
Eclipsecon08 Introduction To GroovyAndres Almiray
 
Introduction To Groovy
Introduction To GroovyIntroduction To Groovy
Introduction To Groovymanishkp84
 
Grooscript gr8conf
Grooscript gr8confGrooscript gr8conf
Grooscript gr8confGR8Conf
 
Groovy for Java Developers
Groovy for Java DevelopersGroovy for Java Developers
Groovy for Java DevelopersAndres Almiray
 
Introduction to Oracle Groovy
Introduction to Oracle GroovyIntroduction to Oracle Groovy
Introduction to Oracle GroovyDeepak Bhagat
 
Boosting Your Testing Productivity with Groovy
Boosting Your Testing Productivity with GroovyBoosting Your Testing Productivity with Groovy
Boosting Your Testing Productivity with GroovyJames Williams
 
Javaone2008 Bof 5101 Groovytesting
Javaone2008 Bof 5101 GroovytestingJavaone2008 Bof 5101 Groovytesting
Javaone2008 Bof 5101 GroovytestingAndres Almiray
 
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume Laforge
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume LaforgeGroovy and Grails in Action - Devoxx 2008 - University - Guillaume Laforge
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume LaforgeGuillaume Laforge
 
Metaprogramming with Groovy
Metaprogramming with GroovyMetaprogramming with Groovy
Metaprogramming with GroovyAli Tanwir
 
2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Wsloffenauer
 
Oscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast LaneOscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast LaneAndres Almiray
 
Startup groovysession1
Startup groovysession1Startup groovysession1
Startup groovysession1kyon mm
 
Groovy & Grails: Scripting for Modern Web Applications
Groovy & Grails: Scripting for Modern Web ApplicationsGroovy & Grails: Scripting for Modern Web Applications
Groovy & Grails: Scripting for Modern Web Applicationsrohitnayak
 
Groovy a Scripting Language for Java
Groovy a Scripting Language for JavaGroovy a Scripting Language for Java
Groovy a Scripting Language for JavaCharles Anderson
 

Similaire à Groovy And Grails JUG Padova (20)

Groovy And Grails JUG Sardegna
Groovy And Grails JUG SardegnaGroovy And Grails JUG Sardegna
Groovy And Grails JUG Sardegna
 
Apache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystemApache Groovy: the language and the ecosystem
Apache Groovy: the language and the ecosystem
 
Eclipsecon08 Introduction To Groovy
Eclipsecon08 Introduction To GroovyEclipsecon08 Introduction To Groovy
Eclipsecon08 Introduction To Groovy
 
Introduction To Groovy
Introduction To GroovyIntroduction To Groovy
Introduction To Groovy
 
Grooscript gr8conf
Grooscript gr8confGrooscript gr8conf
Grooscript gr8conf
 
Groovy for Java Developers
Groovy for Java DevelopersGroovy for Java Developers
Groovy for Java Developers
 
Introduction to Oracle Groovy
Introduction to Oracle GroovyIntroduction to Oracle Groovy
Introduction to Oracle Groovy
 
Boosting Your Testing Productivity with Groovy
Boosting Your Testing Productivity with GroovyBoosting Your Testing Productivity with Groovy
Boosting Your Testing Productivity with Groovy
 
Javaone2008 Bof 5101 Groovytesting
Javaone2008 Bof 5101 GroovytestingJavaone2008 Bof 5101 Groovytesting
Javaone2008 Bof 5101 Groovytesting
 
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume Laforge
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume LaforgeGroovy and Grails in Action - Devoxx 2008 - University - Guillaume Laforge
Groovy and Grails in Action - Devoxx 2008 - University - Guillaume Laforge
 
Metaprogramming with Groovy
Metaprogramming with GroovyMetaprogramming with Groovy
Metaprogramming with Groovy
 
MetaProgramming with Groovy
MetaProgramming with GroovyMetaProgramming with Groovy
MetaProgramming with Groovy
 
OpenLogic
OpenLogicOpenLogic
OpenLogic
 
Svcc Groovy Testing
Svcc Groovy TestingSvcc Groovy Testing
Svcc Groovy Testing
 
2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws2007 09 10 Fzi Training Groovy Grails V Ws
2007 09 10 Fzi Training Groovy Grails V Ws
 
Oscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast LaneOscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast Lane
 
Startup groovysession1
Startup groovysession1Startup groovysession1
Startup groovysession1
 
Groovy & Grails: Scripting for Modern Web Applications
Groovy & Grails: Scripting for Modern Web ApplicationsGroovy & Grails: Scripting for Modern Web Applications
Groovy & Grails: Scripting for Modern Web Applications
 
Groovy a Scripting Language for Java
Groovy a Scripting Language for JavaGroovy a Scripting Language for Java
Groovy a Scripting Language for Java
 
What's New in Groovy 1.6?
What's New in Groovy 1.6?What's New in Groovy 1.6?
What's New in Groovy 1.6?
 

Dernier

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 

Dernier (20)

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

Groovy And Grails JUG Padova

  • 1. 1 Groovy and Grails What are they, and what are the benefits and risks? JUG Padova, 17 May 2008
  • 2. 2 Who am I? John Leach, Chief Technical Officer for Syger Java developer from the start – and still learning Syger - a small software consultancy in Verona, Italy Who are you? Who's heard of Groovy? Who's heard of Grails? Who writes web applications? Pleased to meet you Warning! Intensive content session Lots to see, not much time Questions at the end JUG Padova, 17 May 2008
  • 3. 3 Overview of Dynamic scripting language Similar syntax to Java Evolution not revolution But... with closures and meta programming and relaxed typing and lots of syntax sugar and a silly name - sigh JUG Padova, 17 May 2008
  • 4. 4 Overview of Ruby on Rails philosophy – evolution not revolution Convention over configuration Uses 20% Groovy and 80% Java (elegance and power) But... with Spring, Hibernate, and SiteMesh has a plugin architecture no XML (though it's there when you need it) no HQL/SQL (though they're there when you need them) no Ruby, JRuby or Rails JUG Padova, 17 May 2008
  • 5. 5 Java to Groovy – Step 1 HelloWorld.groovy public class HelloWorld { private String name; public void setName(String name) { this.name = name; } public String getName() { return name; } public String greet() { return quot;Hello quot; + name; } public static void main(String... args) { HelloWorld helloWorld = new HelloWorld(); helloWorld.setName(quot;Groovyquot;); System.out.println(helloWorld.greet()); } } JUG Padova, 17 May 2008
  • 6. 6 Java to Groovy – Step 2 HelloWorld.groovy class HelloWorld { String name String greet() { return quot;Hello quot; + name } static void main(String... args) { HelloWorld helloWorld = new HelloWorld() helloWorld.name = 'Groovy' println(helloWorld.greet()) } } JUG Padova, 17 May 2008
  • 7. 7 Java to Groovy – Step 3 HelloWorld.groovy class HelloWorld { String name String greet() { quot;Hello ${name}quot; } static void main(String... args) { println new HelloWorld(name: 'Groovy').greet() } } Plain Ordinary Groovy Objects Reduced clutter Simple constructors Adapted from: http://groovy.dzone.com/news/java-groovy-few-easy-steps JUG Padova, 17 May 2008
  • 8. 8 Java to Groovy – Check HelloWorld.class Groovy: JUGPadova>groovy HelloWorld.groovy Hello Groovy Java: JUGPadova>groovyc HelloWorld.groovy JUGPadova>java -cp %GROOVY_HOME%embeddablegroovy-all-1.5.4.jar;. HelloWorld Hello Groovy Javap: JUGPadova>javap HelloWorld Compiled from quot;HelloWorld.groovyquot; public class HelloWorld extends java.lang.Object implements groovy.lang.GroovyObject { public HelloWorld(); public java.lang.String greet(); public java.lang.String getName(); public void setName(java.lang.String); public static java.lang.Object main(java.lang.String[]); ... } JUG Padova, 17 May 2008
  • 9. 9 Groovy Closures – Step 1 ListTests.groovy import static java.lang.System.out; import static java.util.Arrays.asList; import java.util.ArrayList; import java.util.List; public class ListTests { public static void main(String... args) { List<String> names = asList(quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;); out.println(names.getClass().toString() + quot; quot; + names); List<String> shortNames = new ArrayList<String>(); for(String s : names) { if (s.length() < 4) { JUGPadova>groovy ListTests.groovy shortNames.add(s); class java.util.Arrays$ArrayList } [quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;] } 3 out.println(shortNames.size()); Ted for(String s : shortNames) { Jed out.println(s); Ned } } } JUG Padova, 17 May 2008
  • 10. 10 Groovy Closures – Step 2 ListTests.groovy class ListTests { static void main(String... args) { List<String> names = ['Ted', 'Fred', 'Jed', 'Ned'] println quot;${names.class} ${names}quot; List<String> shortNames = new ArrayList() for(String s : names) { if (s.length() < 4) { shortNames << s } } println shortNames.size() shortNames.each { println it } } } JUG Padova, 17 May 2008
  • 11. 11 Groovy Closures – Step 3 ListTests.groovy List<String> names = ['Ted', 'Fred', 'Jed', 'Ned'] println quot;${names.class} ${names}quot; List<String> shortNames = names.findAll { it.length() < 4 } println shortNames.size() shortNames.each { println it } JUGPadova>groovy ListTests.groovy class java.util.ArrayList [quot;Tedquot;, quot;Fredquot;, quot;Jedquot;, quot;Nedquot;] 3 Ted Jed Ned Idiomatic Groovy Reduced clutter Simple concise syntax Adapted from: http://groovy.dzone.com/news/java-groovy-part-2-closures-an JUG Padova, 17 May 2008
  • 12. 12 Meta Object Protocol - MOP Introspection: MyClass.metaClass.methods.each { println it.name } MyClass.metaClass.properties.each { println it.name } MyClass.metaClass.respondsTo(obj, 'execute') MyClass.metaClass.hasProperty(obj, 'status') Dynamic method invocation: obj.quot;$namequot;() Dynamic property getters and setters: Object value = obj.quot;$namequot; obj.quot;$namequot; = value JUG Padova, 17 May 2008
  • 13. 13 Meta Object Protocol - MOP Intercepting (Aspect Oriented Programming) def invokeMethod = { String name, args -> println quot;$name invokedquot; } def getProperty = { String name -> println quot;getting $namequot; } def setProperty = { String name, value -> println quot;setting $namequot; } Changing behaviour at run time: def methodMissing = { String name, args -> quot;No $name methodquot; } def propertyMissing = { String name -> quot;No $name propertyquot; } Duck.metaClass.quack = { quot;Quack!quot; } // duck.quack() Duck.metaClass.getSpecies = { -> quot;Canardquot; } // duck.species JUG Padova, 17 May 2008
  • 14. 14 Domain Specific Language: AntBuilder AntBuilder ant = new AntBuilder() String myDir = 'target/AntTest/' ant.sequential { echo('inside sequential') mkdir(dir: myDir) copy(todir: myDir) { fileset(dir: 'src/test') { include(name: '**/*.groovy') } } echo('done') } File file = new File('target/AntTest/groovy/util/AntTest.groovy') assert file.exists() // yes it does Adapted from: http://groovy.codehaus.org/Using+Ant+from+Groovy Gant – Groovy, Ant, but no XML: http://gant.codehaus.org/ JUG Padova, 17 May 2008
  • 15. 15 Domain Specific Language: MarkupBuilder Groovy snippet: MarkupBuilder xml = new MarkupBuilder(writer) xml.'rec:records'('xmlns:rec':'http://groovy.codehaus.org') { car(name:'HSV Maloo', make:'Holden', year:2006) { country('Australia') record(type:'speed', ' Truck with speed of 271kph') } } Output snippet: <rec:records xmlns:rec='http://groovy.codehaus.org'> <car name='HSV Maloo' make='Holden' year='2006'> <country>Australia</country> <record type='speed'> Truck with speed of 271kph</record> </car> </rec:records> Adapted from: http://groovy.codehaus.org/Creating+XML+using+Groovy's+MarkupBuilder JUG Padova, 17 May 2008
  • 16. 16 But Wait, there's More! Ranges – 0..9, 0.<10 Curried closures Regular expression syntax sugar - /d+/ Extended switch operator – switch(title) { case 'Groovy': ... Operator overloading – list << item Elvis operator – value = value ?: defaultValue; Safe dereferencing - person?.parents?.grandParents The Expando class – saves writing a 'real' class Unit testing, the Groovy Mock Library SwingBuilder Joint compiler (compile Groovy and Java source code together) ... But we don't have time for all that now JUG Padova, 17 May 2008
  • 17. 17 Groovy – the Good News Past the version 1.0 barrier (2 Jan 2007) IDE support is maturing (Eclipse, NetBeans, and IntelliJ IDEA) Being used in industry Currently around 30th place according to TIOBE (http://www.tiobe.com) G2One Inc., support from the Lead developer (Guillaume Laforge) IBM Project Zero “Drill down” to Java when you need the speed JUG Padova, 17 May 2008
  • 18. 18 Groovy – the Bad News IDE support is still maturing Slow execution speed (but not s-l-o-w) Idiomatic Groovy is not Java Won't get you a Job JUG Padova, 17 May 2008
  • 19. 19 Groovy – the Fear, Uncertainty, and Doubt Interpreted language – no, compiled to Java bytecode Not a standard – no, JSR 241 Orphan project – no Sun, Oracle, IBM, IntelliJ support Usurping Java – no, augmenting Java No Groovy programmers – no, most Java programmers should understand it JUG Padova, 17 May 2008
  • 20. 20 Pragmatic Groovy Start in places where execution speed is less important: Build scripts – AntBuilder, Gant Unit testing, and mocking Swing User Interfaces – SwingBuilder Domain Specific Languages JUG Padova, 17 May 2008
  • 21. 21 Grails – What's in the Box? Generators Predefined application layout (folders) Model View Controller pattern - surprise! GORM – Hibernate made easy Spring and Spring MVC under the covers SiteMesh powering the views Groovy Server Pages (GSP) Tag Libraries but no XML Plug-in architecture Testing – unit, integration, web Excellent, concise documentation JUG Padova, 17 May 2008
  • 22. 22 Generators grails create-app Creates (and populates) the application directories grails create-domain-class Creates an empty domain (model) class grails create-service Creates a transactional business logic class grails create-tag-lib Creates an empty tag library class grails create-unit-test Creates a unit test class grails generate-controller Generates a CRUD controller class for a domain class grails generate-views Generates the four CRUD views for a domain class grails run-app Runs the web application in Jetty grails test-app Runs the unit tests grails console Runs the Grails Swing interactive console grails shell Runs the Grails interactive shell grails war Creates a war file for JEE deployment Run grails create-app, then grails run-app, and you've got an (empty) running web application, in less than 30 seconds You'll still have to write some code yourself JUG Padova, 17 May 2008
  • 23. 23 Domain Models class Album { class Picture { User user User user String caption Album album String description POGO Set images Set pictures String file String caption Associations static belongsTo = User static belongsTo = [ User, Album ] static hasMany = [ pictures:Picture ] static hasMany = [ images:Image ] static constraints = { Validation Transient properties caption(size:1..40, blank:false) static transients = [ 'file' ] } Object Relational Mapping static mapping = { static mapping = { pictures cascade:'all', inverse:true images cascade:'all', inverse:true description type:'text' } user index:'user_idx', unique:false } } } JUG Padova, 17 May 2008
  • 24. 24 Views views/layouts/main.gsp <!DOCTYPE html ... > <html xmlns=quot;http://www.w3.org/1999/xhtmlquot;> <head> <title><g:layoutTitle default=quot;WebAlbumquot; /></title> <link rel=quot;stylesheetquot; type=quot;text/cssquot; href=quot;${createLinkTo(dir:'css', file:'main.css')}quot;/> <g:layoutHead /> </head> <body> <div class='title'>WebAlbum</div> <div class='content'> <g:layoutBody /> </div> </body> </html> JUG Padova, 17 May 2008
  • 25. 25 Views <html> <head> <meta name=quot;layoutquot; content=quot;mainquot; /> views/picture/create.gsp <title>WebAlbum : Create Picture</title> <g:layoutTitle /> <script type=quot;text/javascriptquot;> ... </script> </head> <g:layoutHead /> <body> <h1>Create Picture</h1> <g:layoutBody /> <g:uploadForm action=quot;savequot;> ... <td valign=quot;topquot; class=quot;namequot;> <label for=quot;captionquot;>Caption:</label> </td> <td valign=quot;topquot; class=quot;valuequot;> <input type=quot;textquot; size=quot;40quot; maxlength=quot;40quot; id=quot;captionquot; name=quot;captionquot; value=quot;${fieldValue(bean: picture, field: 'caption')}quot;/> </td> ... </g:uploadForm> domain/Picture.groovy </body> </html> JUG Padova, 17 May 2008
  • 26. 26 Controllers class PictureController { def list = { [list:Picture.list(params), paginateCount:Picture.count()] } def show = { Picture picture = Picture.get(params.id) if (!picture) { flash.message = quot;Picture not foundquot; redirect(action:list) } else { return [picture:picture] } } ... } JUG Padova, 17 May 2008
  • 27. 27 Controllers class PictureController { def beforeInterceptor = [ action:this.&intercept, only:['create']] def create = { ... } def intercept() { User user = sessionUser() if (!user || user.albumsCount == 0) { flash.warning = quot;You must create an album first!quot; redirect(controller: 'album', action: 'create') return false } true } } JUG Padova, 17 May 2008
  • 28. 28 Tag Libraries views/picture/show.gsp ... <tr class=quot;propquot;> <td valign=quot;topquot; class=quot;namequot;>Caption:</td> <td valign=quot;topquot; class=quot;valuequot;> <wa:pictureAnchor picture=quot;${picture}quot; size=quot;${Image.Original}quot;> ${picture.caption ?: '...'} </wa:pictureAnchor> </td> </tr> ... JUG Padova, 17 May 2008
  • 29. 29 Tag Libraries class WebAlbumTagLib { taglib/WebAlbumTagLib.groovy static namespace = quot;waquot; def pictureAnchor = { attrs, body -> Picture picture = attrs.remove('picture') def size = attrs.remove('size') String link = createPictureLink(picture.id, size).encodeAsHTML() out << quot;<a href=quot;${link}quot;quot; attrs.each { key, value -> out << quot; $key=quot;$valuequot;quot; } out << '>' out << body() out << '</a>' } ... } JUG Padova, 17 May 2008
  • 30. 30 But Wait, there's More! Filters – conf/WebAlbumFilter.groovy Create Gant scripts – scripts/CompileSources.groovy GORM many-to-many, composition, inheritance, eager fetching, ... GORM dynamic finders – findByFirstNameAndLastName(...) GORM transactions – User.withTransaction { status -> ... } Controller chaining Shared templates URL mappings - quot;/salequot;(controller:'product', action:'sale') Multiple request conversations – Web Flow Ajax support – Prototype, Dojo, Yahoo UI, GWT Content negotiation Web Services – REST and SOAP ... But we don't have time for all that now JUG Padova, 17 May 2008
  • 31. 31 Grails – the Good News Past the version 1.0 barrier (4 Feb 2008) IDE support is maturing (Eclipse, NetBeans, and IntelliJ IDEA) Being used in industry G2One Inc., support from the Lead developer (Graeme Rocher) “Drill down” to Java when you need to JUG Padova, 17 May 2008
  • 32. 32 Grails – the Bad News IDE support is still maturing Slow execution speed (but not s-l-o-w) Won't get you a Job JUG Padova, 17 May 2008
  • 33. 33 Grails – the Fear, Uncertainty, and Doubt Another Rails clone – no, uses the philosophy in a Groovy/Java way Built with an interpreted language (Groovy) – no, 20% Groovy which compiles to bytecode anyway No Grails programmers – no, see no Groovy programmers Only good for CRUD applications – no, you can do any full stack JEE application, SOAP and REST included Much slower than JEE – no, Sun engineers results showed JEE to be 2 to 4 times faster with 100 to 500 concurrent users http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-9535&yr=2007&track=9 JUG Padova, 17 May 2008
  • 34. 34 Pragmatic Grails Start in places where execution speed is less important: In-house web applications “Long tail” applications (10 – 50 concurrent users) Prototyping a JEE web application JUG Padova, 17 May 2008
  • 35. 35 What's Next? Groovy: http://groovy.codehaus.org/ Grails: http://grails.org/ About Groovy: http://aboutgroovy.com/ Groovy Zone: http://groovy.dzone.com/ InfoQ Groovy: http://www.infoq.com/groovy InfoQ Grails: http://www.infoq.com/grails Graeme Rocher's blog: http://graemerocher.blogspot.com/ Guillaume Laforge's blog: http://glaforge.free.fr/weblog/ G2One Inc.: http://www.g2one.com/index.html JUG Padova, 17 May 2008
  • 36. 36 Read the Books, Watch the Movies Books: Groovy Recipes: http://pragprog.com/titles/sdgrvr Programming Groovy: http://pragprog.com/titles/vslg Groovy in Action: http://www.manning.com/koenig/ The Definitive Guide to Grails: http://www.apress.com/book/view/1590597583 Films: Grails eXchange 2007: http://grails-exchange.com/ JUG Padova, 17 May 2008
  • 37. 37 Thank You, any Questions? Syger: http://www.syger.it/ Grails WebAlbum: http://www.syger.it/Tutorials/GrailsWebAlbum.html Ruby on Rails WebAlbum (a comparison, written first): http://www.syger.it/Tutorials/RubyOnRailsWebAlbum.html My personal site: http://www.jhl.it/ Contact: john.leach@syger.it JUG Padova, 17 May 2008