Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 640 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 640 Bytes

Example Spring Boot Jira Client

Showcase of how to consume the Jira Server REST Api with Spring.

Configuration

Configure credentials and the API base path in a application.properties file.

jira.client.username=
jira.client.password=
jira.client.url=

Build & Run

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.