Using groovy scripts in your application deployment
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
Published at DZone with permission of its author, Pavel Bernshtam.Assuming that our installation looks like
tools/jre tools/groovy server/bin/myscript server/groovy/myscript.groovy server/groovy/SomeClass.groovy lib/myjar.jarthe 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 $*
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)




