I knew with Spring Cloud and some external configuration service (such Consul), when a property value changed, the Spring Cloud apps can retrieve the new value and refresh the Environment
of the apps. The question is whether there is a similar solution for Spring Boot apps?
In my case, I have an app using a DB as its persistent store. The password of the DB will be changed daily, and the new password will be sent as a message. The app can get the new password from the message successfully, but I've got no idea to replace the old one.