我正在尝试设置自定义字段,同时我正在使用Java Jira Rest客户端创建一个Jira实例。
下面是我试图实现的自定义字段的XML表示,其中"DATAOBJECT“是多选选项中的一项:
<customfield id="customfield_10730" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
<customfieldname>Environnements</customfieldname>
<customfieldvalues>
<customfieldvalue key="13044">
<![CDATA[ DATAOBJECT]]>
</customfieldvalue>
</customfieldvalues>
</customfield>
下面是我的Java代码,它允许我在Jira中创建一个实例,但没有自定义字段。
JiraRestClientFactory restClientFactory = new AsynchronousJiraRestClientFactory();
try {
JiraRestClient restClient = restClientFactory.createWithBasicHttpAuthentication(new URI("http://JIRA_DOMAIN"), "Username", "Passwd");
IssueRestClient i = restClient.getIssueClient();
IssueInputBuilder issueBuilder = new IssueInputBuilder("projectKey", issueTypeID));
issueBuilder.setSummary("description");
issueBuilder.setFieldValue("customfield_10730", "DATAOBJECT");
IssueInput issue = issueBuilder.build();
Promise<BasicIssue> promise = i.createIssue(issue);
try
{
BasicIssue basicIssue = promise.get();
System.out.println(basicIssue.getId());
restClient.close();
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
}
catch (URISyntaxException e)
{
System.out.println(e.getMessage());
}
这段代码不起作用,我使用的是Java Jira Rest Client 2.0.0-m31。有人能告诉我这里出了什么问题吗?
提前谢谢。
发布于 2017-08-24 10:00:48
对于多选自定义域:
ComplexIssueInputFieldValue value = ComplexIssueInputFieldValue.with("value", "DATAOBJECT");
issueBuilder.setFieldValue("customfield_10730", Collections.singletonList(value));
对于单选字段:
issueBuilder.setFieldValue("customfield_10730", ComplexIssueInputFieldValue.with("value", "DATAOBJECT"));
(适用于jira-rest-java-client-api和jira-rest-java-client-core v.4.0.0)
发布于 2017-10-18 14:53:51
试试这个:
String []values = {"Value1","Value2"};
String custonFieldId = "customfield_10730";
List<ComplexIssueInputFieldValue> fieldList = new ArrayList<ComplexIssueInputFieldValue>();
for(String value : values){
Map<String, Object> aMap = new HashMap<String, Object>();
aMap.put(null,value);
//If you also need to pass an id
//aMap.put(id,value);
//fieldList.add(aMap);
fieldList.add(aMap);
}
issue.setFieldValue( custonFieldId , fieldList);
我希望这对某些人有帮助!
发布于 2018-01-18 14:21:22
..。这对我很有效。customfield_16681是多选字段
import net.rcarz.jiraclient.*;
import org.json.JSONObject;
import java.util.ArrayList;
JSONObject entityObject = new JSONObject();
entityObject.put("id", "17891");
Issue newIssue = jira.createIssue("ProjectID", "Bug")
.field(Field.SUMMARY, "Test of create Jira")
.field(Field.DESCRIPTION, "Test of create Jira desc")
.field(Field.ASSIGNEE, "Roman")
.field(Field.FIX_VERSIONS, new ArrayList() {{
add("your version");}})
.field("customfield_16681", new ArrayList<Object>(){{ add(entityObject);}})
.execute();
System.out.println(newIssue);
pom依赖关系:
<dependency>
<groupId>net.rcarz</groupId>
<artifactId>jira-client</artifactId>
<version>0.5</version>
<scope>compile</scope>
</dependency>
https://stackoverflow.com/questions/42490160
复制相似问题