Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to create an issue in JIRA using java rest api

anuj chaurasia August 30, 2015

I have checked almost every link but could not find the proper solution for it.
I need to create an issue in JIRA using java rest api.
Code :-

 

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import org.codehaus.jettison.json.JSONException;
import com.atlassian.jira.rest.client.api.JiraRestClient;
import com.atlassian.jira.rest.client.api.domain.BasicProject;
import com.atlassian.jira.rest.client.api.domain.Issue;
import com.atlassian.jira.rest.client.internal.ServerVersionConstants;
import com.atlassian.jira.rest.client.internal.async.AsynchronousJiraRestClientFactor;


public class TestingRestAPI {
private static URI jiraServerUri =
URI.create("https://vgsvdgteam.jira.com/rest/api/2/project");
public static void main(String[] args) throws URISyntaxException,
JSONException, IOException {
final AsynchronousJiraRestClientFactory factory = new
AsynchronousJiraRestClientFactory();
final JiraRestClient restClient = factory.createWithBasicHttpAuthentication(jiraServerUri, "liasia","cooki123!!");
try {
final int buildNumber = restClient.getMetadataClient().getServerInfo().claim().getBuildNumber();
System.out.println("---------------------------------"+buildNumber);
// first let's get and print all visible projects (only jira4.3+)
System.out.println("Print all print all visible projects:");
if (buildNumber >= ServerVersionConstants.BN_JIRA_6) {
final Iterable<BasicProject> allProjects = restClient.getProjectClient().getAllProjects().claim();
for (BasicProject project : allProjects) {
System.out.println(project);
}
}
// then print one issue details
System.out.println("Print issue TST-63239");
final Issue issue = restClient.getIssueClient().getIssue("TST-63239").claim();
System.out.println(issue);
}
finally {
restClient.close();
}
}
}

Dependency added in pom.xml :-

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-api</artifactId>
<version>2.0.0-m25</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client-core</artifactId>
<version>2.0.0-m25</version>
<scope>provided</scope>
</dependency>

Exception getting :-

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Exception in thread "main" RestClientException{statusCode=Optional.of(404), errorCollections=[ErrorCollection{status=404, errors={}, errorMessages=[]}]}
at com.atlassian.jira.rest.client.internal.async.DelegatingPromise.claim(DelegatingPromise.java:47)
at com.citrix.restjira.jiratest.TestingRestAPI.main(TestingRestAPI.java:25)
Caused by: RestClientException{statusCode=Optional.of(404), errorCollections=[ErrorCollection{status=404, errors={}, errorMessages=[]}]}
at com.atlassian.jira.rest.client.internal.async.AbstractAsynchronousRestClient$2.apply(AbstractAsynchronousRestClient.java:166)
at com.atlassian.jira.rest.client.internal.async.AbstractAsynchronousRestClient$2.apply(AbstractAsynchronousRestClient.java:160)
at com.atlassian.httpclient.api.ResponsePromiseMapFunction.apply(ResponsePromiseMapFunction.java:48)
at com.atlassian.httpclient.api.ResponsePromiseMapFunction.apply(ResponsePromiseMapFunction.java:12)
at com.atlassian.util.concurrent.Promises$Of$3.apply(Promises.java:285)
at com.atlassian.util.concurrent.Promises$2.onSuccess(Promises.java:162)
at com.google.common.util.concurrent.Futures$7.run(Futures.java:1072)


After checking the exception it seems the claim() function of Serverinfo class has the problem.
Or the URL has any issue ?
Can some help me to overcome this issue or any useful link?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 31, 2015

Have you tested a simple REST create call?  Instead of messing around with whatever libraries this code might be coming from, just a single "curl" to ensure you've got the basics right?

As in https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-create-issue

TAGS
AUG Leaders

Atlassian Community Events