在SoapUI中的groovy脚本中加载外部jar

时间:2018-01-04 12:22:58

标签: groovy soapui

我需要从SoapUI项目中的groovy脚本中调用Jar中的方法。

由于缺乏管理访问权限,我无法将该jar放在SaopUI intall目录中的“../bin/ext”文件夹中。

所以剩下的唯一选择是在运行时加载jar并调用方法。非常简单的方法。

我尝试了以下方法。

this.class.classLoader.rootLoader.addURL(new URL("file:///H://Foo-2//Foo.jar"));
def cls = Class.forName("test").newInstance();
cls.add()

这不起作用,因为rootLoader是 null。

second approach .

def classLoader = ClassLoader.systemClassLoader
def newClassLoader = new URLClassLoader([new File("file:///H://Foo-2//Foo.jar")
        .toString().toURL()] as URL[], classLoader)
def cls = Class.forName("test").newInstance();

这也不行,它给了我 ClassNotFoundException

我花了一天时间。甚至在看到thread后将类名更改为小写。

编辑1

我试过这个too。并改变我的代码。

def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def classpathHacker = new com.eviware.soapui.support.ClasspathHacker ()
log.info "utils=" + groovyUtils
mystring = "file://H://Baz.jar" 
com.eviware.soapui.support.ClasspathHacker.addURL( new URL(mystring) )
def cls = new bar() // how to call the static method add of `bar` class ?
log.info cls

我的Jar代码太简单了。这是

public class bar {
    public static void main(String[] args) {
        add();
        }
        public static void add(){
            String path = "H:" + File.separator + "Groovy" + File.separator + "hi.txt";
            File f = new File(path);

            f.getParentFile().mkdirs(); 
            try {
                f.createNewFile();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
}

我还有其他选择吗?我做错了什么?

解决。这是最终的Groovy脚本。

def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def classpathHacker = new com.eviware.soapui.support.ClasspathHacker ()

path = groovyUtils.getProjectPath()
myfile = new java.io.File(path + "/Baz.jar")
mystring = "file://" + path + "/Baz.jar"
log.info "myfile=" + myfile

classpathHacker.addFile( myfile )
com.eviware.soapui.support.ClasspathHacker.addFile( myfile )
com.eviware.soapui.support.ClasspathHacker.addURL( new URL(mystring) )
//import Baz

def instance = this.class.classLoader.loadClass( 'bar', true, false )?.newInstance()
instance.add();

1 个答案:

答案 0 :(得分:3)

您知道com.eviware.soapui.support.ClasspathHacker吗? 如果你真的不能把它放到/ ext文件夹中,也许就可以了。

参考:

  

https://community.smartbear.com/t5/SoapUI-Open-Source/Soapui-is-not-loading-external-jar-file-location-added-to/td-p/7619

def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def classpathHacker = new com.eviware.soapui.support.ClasspathHacker ()

log.info "utils=" + groovyUtils
path = groovyUtils.getProjectPath()
myfile = new java.io.File(path + "/ojdbc14.jar")
mystring = "file://" + path + "/ojdbc14.jar"
log.info "myfile=" + myfile

classpathHacker.addFile( myfile )
com.eviware.soapui.support.ClasspathHacker.addFile( myfile )
com.eviware.soapui.support.ClasspathHacker.addURL( new URL(mystring) )

import groovy.sql.*
def sql = groovy.sql.Sql.newInstance( db, userid, password, 'oracle.jdbc.driver.OracleDriver' )