Category Archives: grails

Grails Video Plugin (flv transcoding & asset management)

During the years I’ve been involved in digital media related projects quite a bit. With the current dominance of flash video stuff has become a bit more straightforward; you don’t have to support multiple proprietary formats in parallel anymore. I … Continue reading

Posted in flash, grails, groovy, video | 15 Comments

Grails – 1.0-RC1

Two days ago Grails reached the 1.0 milestone; the first release candidate is out. New Features inlude: GORM features ORM DSL for advanced Mappings Support for easy to use Filters Tag Library Improvements – Namespaces, body variables, page scope, improved … Continue reading

Posted in grails | Leave a comment

Grails and tests – Part II: Testing dynamic taglibs using XmlSlurper

A couple of days ago I wrote my first post on TDD using Grails. Now let’s move on to something more interesting: testing dynamic taglibs. In another post I showed how to create a simple tag. Which looked like this: … Continue reading

Posted in grails, groovy, testing | 2 Comments

Grails and tests – Part I: Getting started with TDD

Writing tests for a Grails applications is really simple. In Groovy code actually compiles when non-existing methods of objects are referenced (as opposed to Java) which makes it possible exercise TDD (test driven development). Grails supports two types of tests … Continue reading

Posted in grails, groovy, testing | 2 Comments

BOTG 2007

Yesterday I presented at the Battle of the Geeks 2007 organized by my employer. 4 presentations where given and people in the audience where asked to rate each presentation using special cards. (I translated this post to Dutch for the … Continue reading

Posted in botg, grails, groovy | Leave a comment

Grails 0.6 Released

Today Graeme and the Grails team have released a significant new version of Grails: 0.6. One of the more interesting bits added in this release is the addition rich conversation support (Spring Web Flow under the hood) called Grails Flow. … Continue reading

Posted in grails | Leave a comment

Grails – Soap

Since working with, or creating WebServices is something webdevelopers will probably do regularly (or stumble upon in the very near future) I decided to have a look at Grails‘ support for SOAP. First thing I wanted to see was how … Continue reading

Posted in grails, groovy, java, soap, xfire | 2 Comments

Grails – Render method & Markup builder

During Graemes’ demo of Grails at javasummercamp he briefly pointed out the fact that one can implicitly use the Groovy MarkupBuilder (Similar to the Markaby DSL for Ruby) within the render method of an action for generating markup. Which makes … Continue reading

Posted in grails, groovy, java | 2 Comments

Proficts’ Javasummercamp on Rails/Grails/Java

Yesterday I visited Proficts’ Java Summercamp called “Rails en Grails en Java: Nieuwe talen op de JVM”. Which in essence should have been a small seminar on the topic of new languages on the JVM. In reality Charles Nutter presented … Continue reading

Posted in grails, java, jruby, rails | 1 Comment

Grails templating & Ajax

Grails’ templating system is cool. There is no doubt about it. It’s what I wanted JSP2.0 tagfiles to be. In essence they’re not so different from tagfiles in practice their versatility is a fair bit higher. Templates in Grails reside … Continue reading

Posted in ajax, grails | Leave a comment