答案 0 :(得分:7)
如果您使用Eclipse而不是简单。 下载m2e插件(帮助 - >安装新软件 - >使用 - >“m2e plugin download link”)。
然后新 - >项目...... - > Maven项目 在pom.xml中添加:
<dependencies>
...
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-java-client</artifactId>
<version>Version of the library you use</version>
</dependency>
...
</dependencies>
并使用https://studio.atlassian.com/wiki/display/JRJC/Tutorial所需的内容。
或者,如果您只需要获取问题名称,那么您可以对REST URL进行HttpRequest并解析返回的JSON。 REST响应如何:https://jira.atlassian.com/rest/api/latest/issue/JRA-9
请参阅: How to send HTTP request in java? , Decoding JSON format in Java