agile web development groovy grails with netbeans

Download Agile web development Groovy Grails with Netbeans

If you can't read please download the document

Upload: carol-mcdonald

Post on 16-Apr-2017

5.351 views

Category:

Documents


2 download

TRANSCRIPT

Agile Web Development with Groovy and Grails

Carol McDonald, Java Architect

Objective

Overview of theGrails Web Platform

Groovy Overview

What is Groovy?

A dynamic language written for the JVM

Generates byte code

Java like syntax

Easy learning curve for Java developers

Seamless integration with Java

A Groovy object is a Java Object

Groovy application can create Java objects

Java objects can create Groovy objects

A Valid Java Program

import java.util.*;

public class Erase {

private List filterLongerThan(List strings, int length) {

List result = new ArrayList();

for (String n: strings)

if (n.length()