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
- Host: GitHub
- URL: https://github.com/fabianuntermoser/example-spring-boot-jira-client
- Owner: FabianUntermoser
- Created: 2022-04-13T06:40:19.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-13T07:13:35.000Z (about 4 years ago)
- Last Synced: 2025-01-11T22:42:50.636Z (over 1 year ago)
- Topics: openfeign, rest-template, spring-boot
- Language: Java
- Homepage:
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.