gpt4 book ai didi

java - 使用 Jenkins 脚本控制台并查看 Groovy 输出

转载 作者:行者123 更新时间:2023-11-30 08:12:30 27 4
gpt4 key购买 nike

当我在脚本控制台中运行简单的语句时,我可以看到打印的输出,例如

println "hello"

但是,在 Jenkins 脚本控制台中运行时,我看不到这段代码的输出。你知道为什么吗 ?当从计算机命令行运行时,代码打印得很好。

class Product{

private String name
private def price
def vendor

public Product(){
}

Product(name, price, String vendor){
println "Constructor";
this.name = name
this.price = price
this.vendor = vendor
}

public String getName(){
return name
}

def setName(name){
this.name = name
}

public String getPrice(){
return price
}

def setPrice(price = 100.00){
this.price = price
}

def String toString(){
return "Name = $name, Price = $price, Vendor = $vendor";
}

static main(arguments){

def p1 = new Product("Mobile", "10000", "Nokia")
println(p1.toString())
println "Hello"
}
}

最佳答案

据我所知,您在 Jenkins 控制台中编写的脚本实际上是包装类的主要功能。带来所有预先导入的 Jenkins 类的那个。这就是为什么您定义的 main 没有编译到 Groovy run 方法中,因为它是在您从计算机命令行执行脚本时完成的。

如果你想让你的 main 被执行,就像这样把它放在类定义之外:

class Product {
...
}

def p1 = new Product("Mobile", "10000", "Nokia")
println(p1.toString())
println "Hello"

关于java - 使用 Jenkins 脚本控制台并查看 Groovy 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30448376/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com