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!
4 Comments + Add Comment
Leave a comment
Glen Smith
Archives
- April 2012
- March 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003

An article by Glen





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!