I am trying to use Spring-Cloud Config to build a configuration server that will allow others apps to register directories/files to be notified of any events (file modification/creation/deletion) that occur.
I'm currently limited to storing our configuration files on filesystems, so pointing to a git repo won't work.
This is my current applications.properties:
server.port=8888
spring.profiles.active=native
spring.cloud.config.server.native.searchLocations=C:/Users/xxxx/Documents/other/test-config-dir
From what I've researched so far, Spring-Cloud config server points to a location to watch on startup through this application.properties file. Is there any way for me to add searchLocations without restarting the server?
For git repos, I think this would be possible since you can hit endpoints to get configs from branches of said repo right? But would this even be possible when pointing to a location on the filesystem?