Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For an explanation about spring cloud config see http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html 

Server

// TODO

Client

Spring config client is integrated in the blueriq-web. .

Client config options

bootstrap.properties

{code:yml}

spring:

  cloud:

    config:

      uri: http://localhost:8888

      username: <cloud-server-username>

      password: <cloud-server-password>

      failFast: true

      retry:

        max-attempts: 10

        initial-interval: 5000

        max-interval: 10000


{code}

 

application.properties

 

Server

Spring config server will run separately and handle the property files. The client will communicate with the server to get the property files.

The property files will either come from the file-system or use GIT.

 

 

 

 

 

 

 

 SSH / basic auth.

File system

// TODO

Git repository

...