How do I make JIRA notify a Java application about events?
问题 What special configuration do I have to do to make JIRA inform a Java application notified about issue changes (events)? I followed the instructions mentioned at JIRA Webhooks 回答1: You should expose HTTP endpoint in your Java application, and define in Jira the webhook configuration, for example: Name: "My webhook" URL: http://www.myremoteapp.com/webhookreceiver Scope: all issues Events: all issue events See Jira Webhook documentation here. 回答2: As I posted in my question, I did follow the