Jira - Riptutorial

Transcription

jira#jira

11: jira222Examples22JIRA2: Jira Client APIExamplesJQL3: JIRA2333444Examples4JIRA4JIRA45

You can share this PDF with anyone you feel could benefit from it, downloaded the latest versionfrom: jiraIt is an unofficial and free jira ebook created for educational purposes. All the content is extractedfrom Stack Overflow Documentation, which is written by many hardworking individuals at StackOverflow. It is neither affiliated with Stack Overflow nor official jira.The content is released under Creative Commons BY-SA, and the list of contributors to eachchapter are provided in the credits section at the end of this book. Images may be copyright oftheir respective owners unless otherwise specified. All trademarks and registered trademarks arethe property of their respective company owners.Use the content presented in this book at your own risk; it is not guaranteed to be correct noraccurate, please send your feedback and corrections to e1

1: jiraJIRA. 1) ( 09-246.02013-05-21( JIRA User 's Guide ). 2) JIRA Java( HelloWorld)ExamplesWindows Linux / Mac JIRASDK . SDK JIRAJIRA( JIRA)( Atlassian Plugin SDK)JIRAJIRASDK .atlas-run-standaloneJIRA.jira : tps://riptutorial.com/ko/home2

2: Jira Client APIExamplesJQLfinal AsynchronousJiraRestClientFactory factory new AsynchronousJiraRestClientFactory();restClient te(JIRA SERVER), JIRA LOGIN,JIRA PASSWORD);getFilteredIssues("project TestProject");public Iterable Issue getFilteredIssues(String filterJql) throws Exception {final SearchRestClient searchClient HashSet String fields Sets.newHashSet("*all");int total Integer.MAX VALUE;final ArrayList Issue issuesList new ArrayList ();while(issuesList.size() total){Promise SearchResult promiseResult searchClient.searchJql(filterJql, 50,issuesList.size(), fields);final SearchResult issues promiseResult.get();issuesList.addAll((Collection ? extends Issue ) issues.getIssues());if (total Integer.MAX VALUE) {total issues.getTotal();}}return issuesList;}Jira Client API : lient-api-https://riptutorial.com/ko/home3

3: JIRAJIRAAtlassian-SDK . JIRA , JIRA. SDK Windows, Linux Mac .Atlassian SDK . Atlassian SDK Oracle Java SE 8 (JDK) . OpendJDK !()--version (-v)(: ).--http-port (p)HTTP . 2 JIRA--contextpath. . , http : // localhost : 2990 / jira / jira .ROOT . ( : / jira)--. ( : localhost)--. 'jira' . Atlassian. ( : 2990)( : http : // localhost : 2990)( : Confluence)ExamplesJIRASDK , atlas-run-standaloneJIRA .atlas-run-standalone --product jirahttp://localhost:2990/jira. 10http://localhost:2990/jira.JIRAJIRA ,.atlas-run-standalone --product jira --version 6.0 --http-port 1337 --context-path issuesJIRA IRA.atlas-run-standalone .: -https://riptutorial.com/ko/home4

S.NoContributors1jiraCommunity, dvdsmpsn, Nic Brough, ppasler2Jira Client APIAlexander Stolz3JIRAM. Mimpen, ppaslerhttps://riptutorial.com/ko/home5

1 1: jira 2 2 2 Examples 2 2 JIRA 2 2: Jira Client API 3 Examples 3 JQL 3 3: JIRA 4 4 4 Examples 4 JIRA 4 JIRA 4 5