I have short lived task with client to spring cloud config. (dependency to spring-cloud-starter-config or spring-cloud-config-client).
As I mention, this is short lived task that start, load configurations from the server, do some processing, and closed.
the problem is that spring-cloud-config-client start web server (tomcat), and this is redundant- I don't want to start a web server on my client application/task.
I understand that this web server give me the abilities to refresh or update my short lived task, but I doesn't need it. Is there a way to use spring-cloud-config client without starting a server on the client application?