【问题标题】:Jenkins groovy.lang.MissingPropertyException: No such property: for class: Script1Jenkins groovy.lang.MissingPropertyException:没有这样的属性:对于类:Script1
【发布时间】:2016-05-16 15:28:57
【问题描述】:

这个程序的目的是替换所有 TFS 用户的密码。如果我直接在代码中使用用户名和密码,它就可以工作,但是当我将它转换为参数化构建时会出现此错误。

Started by user Jirong Hu
[EnvInject] - Loading node environment variables.
Building remotely on public_jenprodslave_1 in workspace D:\public_jenprodslave_1\workspace\DevOps\Update-TFSPlugin-Password
param userid value : devops_test_user
ERROR: Build step failed with exception
groovy.lang.MissingPropertyException: No such property: userid_param_value for class: Script1


import hudson.model.*
import hudson.triggers.*
import hudson.util.Secret;
import hudson.plugins.tfs.TeamFoundationServerScm

def thr = Thread.currentThread()
def build = thr?.executable
def resolver = build.buildVariableResolver

def userid_param = "userid"
def userid_param_value = resolver.resolve(userid_param)
println "param ${userid_param} value : ${userid_param_value}"

def password_param = "password"
def password_param_value = resolver.resolve(password_param)
//println "param ${password_param} value : ${password_param_value}"


updateTFSPluginPassword(Hudson.instance.items)

def updateTFSPluginPassword(items) {    

    for(item in items) {
        if (item.class.canonicalName != 'com.cloudbees.hudson.plugins.folder.Folder') {

          if (item.scm instanceof TeamFoundationServerScm) {                                    

            // Update the TFS user id here:
            //if (item.scm.getUserName() == 'devops_test_user') {
            if (item.scm.getUserName() == userid_param_value) {
                println("Working on project <$item.name>")
                println item.scm.getType()
                println item.scm.getServerUrl()
                println item.scm.getProjectPath()
                println item.scm.getWorkspaceName()
                println item.scm.isUseUpdate()
                println item.scm.getUserName()
                println item.scm.getPassword()

                // Update the TFS user password hash here:                  
                Secret secret = Secret.fromString(password_param_value)

                tfsSCM = new TeamFoundationServerScm(item.scm.getServerUrl(), 
                                                     item.scm.getProjectPath(), 
                                                     null, 
                                                     item.scm.isUseUpdate(), 
                                                     item.scm.getWorkspaceName(), 
                                                     item.scm.getUserName(), 
                                                     secret) 
                item.scm = tfsSCM

                println ("")

            }            
          }

        }  else  {              
            updateTFSPluginPassword(((com.cloudbees.hudson.plugins.folder.Folder) item).getItems())
        }      
    }
}

【问题讨论】:

    标签: jenkins groovy


    【解决方案1】:

    引发groovy.lang.MissingPropertyException 的原因之一是当您尝试访问其范围之外的变量或您尚未定义该变量时。

    【讨论】:

      【解决方案2】:

      我猜您可能需要在提到的属性上使用Field 注释。也请看here

      【讨论】:

        猜你喜欢
        • 2013-04-11
        • 2018-07-16
        • 2020-02-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2020-03-30
        相关资源
        最近更新 更多