Mar 04
Digg
Stumbleupon
Technorati
Delicious

Coffee break application… a < 30 minutes groovy application!

How many lines of code to do something like this?

def host = new Ghost(“barman.byte-code.com“)
def result = host.ls()
println result

think about it carefully… do you think it’s possible in less then 10?
Let’s pull out a groovy solution!
The server:
1:import groovy.net.xmlrpc.*
2:import java.net.ServerSocket
3:
4:def server = new XMLRPCServer()
5:def socket = new ServerSocket(8080)
6:
7:server.executeShell = [...]

Author: admin
Feb 27
Digg
Stumbleupon
Technorati
Delicious

2GX 2008 Quick View - Reston VA

Hey all,
after the sunny Florida I drove up all the Interstate 95 and I reached Reston VA to attend to 2GX Groovy and Grails Experience!
It was absolutely great!
First I would like to compliments Jay and the NFJS team , because the organization was absolutely wonderful and professional, we arrived and find all that we need [...]

Author: admin
Feb 05
Digg
Stumbleupon
Technorati
Delicious

Grails 1.0 RPM

Hi folks,
today Grails 1.0 was released, as usual I prepared the package for rpm-based systems.
Get it here , and congratulations to all the Grails&Groovy community.
Davide

Author: admin
Feb 04
Digg
Stumbleupon
Technorati
Delicious

Groovy & Wicket

Hi all,
given some requests I publish a classresolver for Wicket that enable groovy pages & components to be hot reloaded in development mode.
I suppose you have a project with maven and so let’s start…

Get the “mighty” GrovvyClassResolver
(fix up the package)
Open the WebApplication class and do something like that (remember that I use maven & [...]

Author: admin
Jan 21
Digg
Stumbleupon
Technorati
Delicious

JBoss World and 2G Expreience!! Here we go!

Now I’m almost set up!! And very happy that this year I will attend to JBoss World!
And the week after to 2G Experience !
I’m looking forward to give you a live coverage of the events form the states, so stay tuned between 10 & 24 feb !

Author: admin
Jan 21
Digg
Stumbleupon
Technorati
Delicious

Another RPM Update for Grails

it requires a lot of action!
Take it Grails-1.0-RC4

Author: admin