How do I auto load a database jar in Groovy without using the -cp switch? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:03:53Z http://stackoverflow.com/feeds/question/254385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch 1 How do I auto load a database jar in Groovy without using the -cp switch? Joshua 2008-10-31T18:00:42Z 2008-10-31T18:27:27Z <p>I want to simplify my execution of a Groovy script that makes calls to an Oracle database. How do I add the ojdbc jar to the default classpath so that I can run</p> <pre><code>groovy RunScript.groovy </code></pre> <p>instead of</p> <pre><code>groovy -cp ojdbc5.jar RunScript.groovy </code></pre> http://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch/254431#254431 0 Answer by mipadi for How do I auto load a database jar in Groovy without using the -cp switch? mipadi 2008-10-31T18:20:16Z 2008-10-31T18:20:16Z <p><code>groovy</code> is just a wrapper script for the Groovy JAR that sets up the Java classpath. You could modify that script to add the path to your own JAR, as well, I suppose.</p> http://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch/254443#254443 1 Answer by Joey Gibson for How do I auto load a database jar in Groovy without using the -cp switch? Joey Gibson 2008-10-31T18:26:38Z 2008-10-31T18:26:38Z <p>There are a few ways to do it. You can add the jar to your system's CLASSPATH variable. You can create a directory called .groovy/lib in your home directory and put the jar in there. It will be automatically added to your classpath at runtime. Or, you can do it in code. </p> <p>this.class.classLoader.rootLoader.addURL(new URL("file:///path to file"))</p> http://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch/254448#254448 3 Answer by Ken Gentle for How do I auto load a database jar in Groovy without using the -cp switch? Ken Gentle 2008-10-31T18:27:27Z 2008-10-31T18:27:27Z <p>Summarized from <em>Groovy Recipes</em>, by Scott Davis, <strong>Automatically Including JARs in the ./groovy/lib Directory</strong>:</p> <ol> <li>Create <code>.groovy/lib</code> in your login directory</li> <li><p>Uncomment the following line in ${GROOVY_HOME}/conf/groovy-starter.conf</p> <p><code>load !{user.home}/.groovy/lib/*.jar</code></p></li> <li><p>Copy the jars you want included to <code>.groovy/lib</code></p></li> </ol> <p>It appears that for Groovy 1.5 or later you get this by default (no need to edit the conf), just drop the jars in the /lib dir.</p>