An open API service indexing awesome lists of open source software.

https://github.com/fabianuntermoser/example-spring-boot-jira-client

Spring Boot Client to consume the Jira Server REST API using RestTemplate and OpenFeign
https://github.com/fabianuntermoser/example-spring-boot-jira-client

openfeign rest-template spring-boot

Last synced: over 1 year ago
JSON representation

Spring Boot Client to consume the Jira Server REST API using RestTemplate and OpenFeign

Awesome Lists containing this project

README

          

# Example Spring Boot Jira Client
Showcase of how to consume the
[Jira Server REST Api](https://developer.atlassian.com/server/jira/platform/rest-apis/)
with Spring.

## Configuration
Configure credentials and the API base path in a `application.properties` file.
```properties
jira.client.username=
jira.client.password=
jira.client.url=
```

## Build & Run
```sh
mvn clean package
```

## Rest Clients
- The `JiraClient` uses `RestTemplate`.
- The `JiraFeignClient` uses `OpenFeign`.

Both Clients provide a ``searchIssues()`` method that queries the configured Jira instance
for all Issues with status `New` in the project `MyProject`.