Java programmer since 1996. J2SE, J2EE Expert, Technical Leader, Team Manager. Rich experience in infrastructure and architecture of distributed applications Pavel has posted 5 posts at DZone. You can read more from them at their website. View Full User Profile

Using groovy scripts in your application deployment

06.26.2012
| 3506 views |
  • submit to reddit
We distribute our application as tar.gz on Linux.Our server is actually jetty with our web application, but we want to make some checks before the server start in order to provide clear error messages w/o need for a user to scan log files.  So I wrote the server start script in groovy and packed groovy installation (and JRE as well) into the application distribution.The problem was, however, that groovy script can't run by itself (like shell script), so I wrapped the script into the shell script.
Assuming that our installation looks like
tools/jre
tools/groovy
server/bin/myscript
server/groovy/myscript.groovy
server/groovy/SomeClass.groovy
lib/myjar.jar
the shell script "myscript" will looks like:
#!/bin/sh

server_bindir=`/usr/bin/dirname $0`; 
server_bindir=`(cd $server_bindir;pwd)`; #get absolute path
server_dir=`dirname $server_bindir`;
server_groovy_dir=$server_dir/groovy

install_home=$server_dir/..;
jars_dir=$install_home/lib


JAVA_HOME=$install_home/tools/jre
export JAVA_HOME


$install_home/groovy/bin/groovy -cp $server_lib_dir:$jars_dir/myjar.jar $server_lib_dir/myscript.groovy  $* 
Published at DZone with permission of its author, Pavel Bernshtam.

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)

Tags: