How do I load jars and classes dynamically at runtime?
Use the groovy script's classLoader to add the jar file at runtime.
this.class.classLoader.rootLoader.addURL(new URL("file:///path to file"))
Then, use Class.forName to load the class.
def cls = Class.forName("com.mysql.jdbc.Driver").newInstance();
Labels