Jun
20
2011

Hacking Grails Scripts with “run-script”

I’ve been using WordPress for some client integration jobs recently and have really fallen in love with the easy of use and extensive plugins that WordPress brings to the content management space.

So I’ve taken the bold move of moving all my data out of Gravl, my long-dead Grails based blogging system, and onto WordPress. The only problem was getting the data out!

First though: write a little user script and get Grails to run it. The only caveat is that I’ve mucked around with Grails scripting system before, but often ended up fighting a lot harder than I needed to make all the right events have fired to ensure everything was sparked up.

Enter Ted Nalied’s little “grails run-script” command! It’s even bundled with Grails 1.3.6+, so there’s no excuse to not love it completely! (I even grabbed the source and dropped it into my Grails 1.2.3 app so I didn’t have to worry about upgrading).

This little bad boy lets you write user scripts that are run once the entire Grails system is up and running (think: copy and paste from “grails console” and save yourself a script you can use over and over).

grails run-script exportcsv.groovy

And say goodbye to nasty Gant hacks to get all the dependencies right! The contents of exportcsv.groovy are executed with a full Grails stack in play, so just go ahead and call stuff:

List be = BlogEntry.findAllWhere(status: "published")
be.each { entry ->
	List line = []
	line << entry.title
	line << entry.body
	line << (entry.tags*.name).join(",") // normal GORM relationships are fine
	line << entry.title.encodeAsNiceTitle() // codecs work too!
	// tons of other "go crazy" export code here
}

Add a little opencsv to the mix, and install the WordPress CSV import plugin, and you have yourself 281 posts, and 781 comments all nicely imported.

Fantastic stuff. I’m going to make good use of this on my next project following Ted’s little idea of prototyping in Grails Console, then saving away the script for later.

Great work Ted! I’m off to find some WordPress templates to make this blog look nice!

About the Author: Glen Smith

4 Comments + Add Comment

  • Hi Glen,

    when I see a blog post of yours announced on groovytweets.org, I always head right there, expecting some interesting Grails/Groovy/Gr8 content. Alas, this time I almost didn’t recognize your blog because the cozy Gravl look is missing :-)

    But content is more important then looks, so I’ll get used to it and wish you good blogging.

    Looking forward to further posts,

    Wolfgang

  • [...] Hacking Grails Scripts with “run-script” [...]

  • Dude, it’s about time you started working with WordPress. Way better than your old site :)

  • Cool. This has just come to the rescue of something that was going to quite complex for us in a framework we’re building on grails. We bootstrap a bunch of beans into the h2 db and then use some of our services to programmatically generate some related domain class code for us.

    This would have required a lot of infrastructure to do as a traditional grails script.

    Thanks for the tip!

Leave a comment

Glen Smith

About Glen

Co-author Grails in Action