Is there a groovy equivalent to the beanshell source() method? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:35:49Z http://stackoverflow.com/feeds/question/303113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method 1 Is there a groovy equivalent to the beanshell source() method? Zach 2008-11-19T19:48:52Z 2008-11-20T19:06:48Z <p>I've scoured the groovy doc and haven't found an analogue, but things there are organized a bit haphazardly. I'm switching from beanshell to groovy and was using the source("fileloc") method in beanshell to inline-include other, utility beanshell scripts for reuse. Is there a standard function to do this in groovy or a best practice?</p> http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method/303208#303208 2 Answer by feoh for Is there a groovy equivalent to the beanshell source() method? feoh 2008-11-19T20:19:46Z 2008-11-19T20:19:46Z <p>The reason you're not finding this is because Groovy is compiled. Your Groovy code gets compiled into Java bytecode that gets run by the JVM right along side any Java code in your app. This is why things like writing Groovified unit tests for large bodies of Java code requires zero extra effort.</p> <p>The BeanShell is a Java-like <em>interpreted</em> language, so slurping in another got of code at run time is no big deal.</p> <p>That said, you might be interested in <a href="http://groovy.codehaus.org/Groovy+Shell#GroovyShell-RecognizedCommands" rel="nofollow">groovysh</a> and its <code>load</code> command.</p> http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method/306480#306480 4 Answer by John Flinchbaugh for Is there a groovy equivalent to the beanshell source() method? John Flinchbaugh 2008-11-20T19:06:48Z 2008-11-20T19:06:48Z <p>You can assemble all the parts of your scripts into a String, then have a GroovyShell object evaluate your script. I picked this up from Venkat Subramanium's DSL examples.</p> <pre><code>part1 = new File("part1.groovy").text part2 = new File("part2.groovy").text script = """ println "starting execution" ${part1} ${part2} println "done execution" """ new GroovyShell().evaluate(script) </code></pre>