Jira REST Java Client 5.1 behind proxy

Daniel September 10, 2019

I'm using the 5.1 client with Spring Boot, and have the following code to configure an instance of JiraRestClient with the URI and credentials

@Bean
private JiraRestClient jiraRestClient() {
    return new AsynchronousJiraRestClientFactory().createWithBasicHttpAuthentication(uri, username, password);
}

The problem is I need to use this behind a proxy. Is there any way to configure the proxy details using this java jira client? I can't find any public methods on the factory to do so

0 answers

Suggest an answer

Log in or Sign up to answer