I have a Grails application which provides dummy webservices for itself. In the real world it could call webservices on another machine, but during development and testing we need be able to access the internal webservice to populate tables. This can't be done during the bootstrap as the internal webserver has not started yet (Grails does this last).
So, I need to be able to detect that Grails has started the webserver, and then run a service to populate tables from the internal webservice.
I don't seem to find anything out there in googleland that appears to help...