Delete issue in JIRA using Java
问题 I am trying to write a method to delete an issue in JIRA. I already have methods to create and update issues, but I cannot find any documentation on how to delete an issue using Java. How can I delete a JIRA issue from a Java application? 回答1: You can try delete from IssueService: https://docs.atlassian.com/jira/latest/com/atlassian/jira/bc/issue/DefaultIssueService.html#delete(com.atlassian.crowd.embedded.api.User, com.atlassian.jira.bc.issue.IssueService.DeleteValidationResult) 回答2: You can