I have configured spring cloud config which picks up property from Github. If I post to /refresh, I am also able to get the updated value in my application.
Now I want to get properties updated automatically. That means I don't want to hit refresh API to get the changes reflected in my application from Github property file to my application.
Do I need to implement Rabbitmq and cloud bus for it or there is any other simple way to do it? Also there document says that we need to add a dependency on the spring-cloud-config-monitor library for push notification. http://projects.spring.io/spring-cloud/spring-cloud.html#_push_notifications_and_spring_cloud_bus But I did not find any such dependency in maven to be added. Not sure if my understanding is wrong. Please help.