当前位置: 首页 > 面试题库 >

Groovy带参数的invokeMethod

公羊安怡
2023-03-14
问题内容

我想从下面的类中调用groovy方法

 package infa9

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import com.ABC.csm.context.AppCtxProperties;

import com.ABC.csm.context.AppContext;


 public class LicenseInfo
{
private StringBuffer licenseInformation;

public LicenseInfo() {
    licenseInformation = new StringBuffer();
}

public StringBuffer getLicenseInformation(){
    return licenseInformation;
}

public void fetchLicenseInformation(HashMap<String,String> params,Map env)
{
    ArrayList<String> licenseList = fetchLicenses(params);
    .
    .
    .

}

private ArrayList<String> fetchLicenses(HashMap<String,String> params,Map env)
{

    ArrayList<String>licenseList = new ArrayList<String>();
    .
    .
    .
return licenseList;

}

}

所以这就是我想做的

//getting user parameters
HashMap<String,String> params = IntermediateResults.get("userparams")

//getting environment variables
Map env=AppContext.get(AppCtxProperties.environmentVariables)

Object[] arguments=new Object[2]
arguments.putAt("userparams", params)
arguments.putAt("env", env)

GroovyShell shell = new GroovyShell()
Script infa9LicenseScript = shell.parse("plugins.infa9.LicenseInfo")

   infa9LicenseScript.invokeMethod(fetchLicenseInformation, arguments)
   String lic=(String)infa9LicenseScript.invokeMethod(getLicenseInformation,null)

我可以fetchLicenseInformation正确传递参数吗?我需要传递HashMap<String,String> ,Map请帮助我使用参数调用groovy方法

错误: Exception in thread "main" groovy.lang.MissingPropertyException: No such property: userparams for class: [Ljava.lang.Object;

更新资料

public List<String> fetchLicenses( Map<String,String> params, Map env ) {
//[ 'a', 'b', 'c' ]
  ArrayList<String>licenseList = new ArrayList<String>();
    String infacmdListLicensesCommand = null;

    if (System.getProperty("os.name").contains("Win"))
    {   infacmdListLicensesCommand = env.get("INFA_HOME")
                + "/isp/bin/infacmd.bat ListLicenses -dn "
                + params.get("dn") + " -un " + params.get("un") + " -pd "
                + params.get("pd") + " -sdn " + params.get("sdn") + " -hp "
                + params.get("dh") + ":" + params.get("dp");}
    else
    {   infacmdListLicensesCommand = env.get("INFA_HOME")
                + "/isp/bin/infacmd.sh ListLicenses -dn "  //this is line no 71, where exception is thrown
                + params.get("dn") + " -un " + params.get("un") + " -pd "
                + params.get("pd") + " -sdn " + params.get("sdn") + " -hp "
                + params.get("dh") + ":" + params.get("dp");}

    try {
        Process proc = Runtime.getRuntime().exec(infacmdListLicensesCommand);

        InputStream stdin = proc.getInputStream();
        InputStreamReader isr = new InputStreamReader(stdin);
        BufferedReader br = new BufferedReader(isr);
        String line = null;
        while ((line = br.readLine()) != null) {
            System.out.println(line);
            licenseList.add(line);
        }
        int exitVal = proc.waitFor();
        System.out.println("Process exit value is: " + exitVal);

    }catch (IOException io) {
        io.printStackTrace();
    }catch (InterruptedException ie) {
        ie.printStackTrace();
    } /* end catch */
return licenseList;
 }

例外 Exception in thread "main" groovy.lang.MissingMethodException: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] Possible solutions: notify(), tokenize(), size() at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(ScriptBytecodeAdapter.java:55) at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unaryPlus(ScriptBytecodeAdapter.java:764) at infa9.LicenseInfo.fetchLicenses(Infa9LicensesUtil.groovy:71)


问题答案:

是的…我LicenseInfo.groovy在一个文件夹中创建了这个时髦的脚本./test/

package test

public class LicenseInfo {
  StringBuffer licenseInformation

  public LicenseInfo() {
    licenseInformation = new StringBuffer()
  }

  public void fetchLicenseInformation( Map<String,String> params, Map env ) {
    List<String> licenseList = fetchLicenses( params, env )
    println "List is $licenseList"
  }

  public List<String> fetchLicenses( Map<String,String> params, Map env ) {
    [ 'a', 'b', 'c' ]
  }
}

在当前文件夹中./,我创建了这个groovy脚本Test.groovy

// Make some params...
def params = [ name:'tim', value:'text' ]

// Fake an env Map
def env = [ something:'whatever' ]

// Load the class from the script
def liClass = new GroovyClassLoader().parseClass( new File( 'test/LicenseInfo.groovy' ) )

// Run the method
liClass.newInstance().fetchLicenseInformation( params, env )

当我执行命令时

groovy Test.groovy

它输出:

List is [a, b, c]

更新后编辑

positive您收到的错误是由于Groovy解析器的工作方式引起的。。。+加入字符串时,您不能将放在下一行的开头,+必须在上一行结尾(因为分号对于常规行的末尾,解析器无法知道您要添加到前一行)

这将起作用:

if (System.getProperty("os.name").contains("Win")) {
  infacmdListLicensesCommand = env.get("INFA_HOME") + "/isp/bin/infacmd.bat ListLicenses -dn " +
                               params.get("dn") + " -un " + params.get("un") + " -pd " +
                               params.get("pd") + " -sdn " + params.get("sdn") + " -hp " +
                               params.get("dh") + ":" + params.get("dp")
}
else {
  infacmdListLicensesCommand = env.get("INFA_HOME") + "/isp/bin/infacmd.sh ListLicenses -dn " +
                               params.get("dn") + " -un " + params.get("un") + " -pd " +
                               params.get("pd") + " -sdn " + params.get("sdn") + " -hp " +
                               params.get("dh") + ":" + params.get("dp")
}

这将是执行相同操作的更 时髦的 方式:

boolean isWindows = System.getProperty("os.name").contains("Win")
// Do it as a list of 3 items for formatting purposes
infacmdListLicensesCommand = [
  "$env.INFA_HOME/isp/bin/infacmd.${isWindows?'bat':'sh'} ListLicenses"
  "-dn $params.dn -un $params.un -pd $params.pd -sdn $params.sdn"
  "-hp $params.dh:$params.dp" ].join( ' ' ) // then join them back together

println infacmdListLicensesCommand // print it out to see it's the same as before


 类似资料:
  • 在 Jenkins 中,我尝试使用 Groovy 脚本将参数传递到构建管道的下游作业中。在我的第一份工作中,我添加了一个构建步骤“执行 Groovy 脚本”,并将内容添加到 Groovy 命令中: 我得到输出: 我已经在我的机器上安装了Groovy 1.5.8,我的Jenkins版本是1.519。我在这里做错了什么。

  • 我正在尝试从groovy中使用shell命令< code > notify-send-t 2000 " Title " " Message " ,以下一种方式< code > " notify-send-t 2000 \ " Title \ " \ " Message \ "。execute()就可以完美地工作了。但是当我试图用表达代替信息时,似乎什么都不管用。下面是代码片段: 能帮我理解一下吗?

  • 问题内容: 我使用以下代码从SQL Server表中进行选择: 它运行完美,但是我想防止SQL注入,所以我尝试使用: 当我尝试执行此操作时,SQL Server没有任何结果。 知道为什么吗? 问题答案: “为什么?” 这是因为很少有电影的名称中带有“ @Search”一词-即“ Indiana Jones and the Last @Search”。也许是《星际迷航3:@搜索Spock》。通过将其

  • 问题内容: 我是否可以使用一组参数启动 Java WebStart 应用程序,就像用标记配置了applet一样? 谢谢 问题答案: 是的,您可以看到以下示例: 显示向您传递参数“ -user = bob”和“ -pass = 8jkaiuasu”到应用程序。以标准方式获取参数。

  • 它不工作:(.我有这个错误 [致命]org.springframework:java-backend-bdd:0.1.0:无法将项目org.springframework.boot:spring-boot-starter-parent:POM:2.0.3.从/到central发布(https://repo.maven.apache.org/maven2):sun.security.validato

  • 在Less中,还可以像函数一样定义一个带参数的mixin, 这种形式叫做 Parametric Mixin,即带参数的混入。如: // 定义一个样式选择器 .borderRadius(@radius){     border-radius: @radius; } 然后,在其他选择器中像这样调用它: // 使用已定义的样式选择器 #header {     .borderRadius(10px)