Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×Hi all, I hope you are doing well.
I am using Java Jira API within a Spring Boot solution that extracts relevant data from Jira, targeting a specific patch/release, and generates automated reports to alert my entire team.
For my Spring Boot application, I have mainly the followed bean:
@Bean
public JiraRestClient jiraRestClient() throws URISyntaxException {
final String username = ConfigUtils.getProperty("jiraUsername");
final String password = ConfigUtils.getProperty("jiraPassword");
JiraRestClientFactory jiraFactory = new AsynchronousJiraRestClientFactory();
URI jiraURI = new URI(jiraURL);
return jiraFactory.createWithBasicHttpAuthentication(jiraURI, username, password);
}
I would like to know if with the implementation above, my JiraRestClient bean will be able to handle multiple/concurrent requests. Or that each request is executed sequentially.
For further information, I am mainly submitting queries through:
SearchResult searchResult = jiraRestClient.getSearchClient()
.searchJql(query, pageSize, startAt, null)
.claim();
Thanks in advance.