How do I auto load a database jar in Groovy without using the -cp switch? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:03:53Zhttp://stackoverflow.com/feeds/question/254385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch1How do I auto load a database jar in Groovy without using the -cp switch?Joshua2008-10-31T18:00:42Z2008-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#2544310Answer by mipadi for How do I auto load a database jar in Groovy without using the -cp switch?mipadi2008-10-31T18:20:16Z2008-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#2544431Answer by Joey Gibson for How do I auto load a database jar in Groovy without using the -cp switch?Joey Gibson2008-10-31T18:26:38Z2008-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#2544483Answer by Ken Gentle for How do I auto load a database jar in Groovy without using the -cp switch?Ken Gentle2008-10-31T18:27:27Z2008-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>