How other program language clients use Spring Cloud Config Server?

yathirigan

There is a mention in the 'Spring-Cloud-Config-Server' documentation that says,

To use these features in an application, just build it as a Spring Boot application

Does this mean that my client app also needs to be a Spring Booot application ? Can't i have a Non-Java application accesing the properties in the Config Server via RESTService calls ? If the data is receieved in JSON format, I could always have a JSON parser in my non-java application to parse and use the data.

spencergibb

The standard uri's are /{name}/{profiles} and /{name}/{profiles}/{label}. These return a json format optimized for the spring cloud config client.

{name} is the application name. {profiles} is a comma separated list of profiles. {label} is the branch name when using git or svn.

The following return the data in other formats optimized for those formats:

  • /{name}-{profiles}.properties
  • /{label}/{name}-{profiles}.properties
  • {name}-{profiles}.json
  • /{label}/{name}-{profiles}.json
  • /{name}-{profiles}.yml
  • /{name}-{profiles}.yaml
  • /{label}/{name}-{profiles}.yml
  • /{label}/{name}-{profiles}.yaml

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Share configuration between Spring cloud config clients

From Dev

How to use the Clients ip address within the function included in the server program?

From Dev

How use Spring Cloud Server without GitHub

From Dev

Spring Cloud Config Server - How to download binary file

From Dev

How to set system variable from Spring Cloud Config Server

From Dev

Externalizing Spring Cloud Data Flow Config - Spring Cloud Config Server

From Dev

Externalizing Spring Cloud Data Flow Config - Spring Cloud Config Server

From Dev

How to use a custom ssh key location with Spring Cloud Config

From Dev

How to use Spring Cloud Config with a Git and Vault composite environment repository?

From Dev

Spring Cloud Config Server without Spring Boot

From Dev

How to use spring-config-server with vertx using https?

From Dev

Spring Cloud Config Client not fetching config when Spring Security is active on Spring Cloud Config Server

From Dev

Spring Cloud Config Server - Security Details

From Dev

Spring Cloud Config Server - Placeholder Label

From Dev

Disable Spring Cloud Server Config using profile?

From Dev

Pattern matching for profile in Spring Cloud Config Server

From Dev

Spring Cloud Config Server plain text

From Dev

Modify spring cloud config server in the client

From Dev

Configuring Spring Cloud Config Server and Spring Cloud Vault for production

From Dev

Include common config for multiple apps in Spring Cloud Config server

From Dev

spring cloud config client not loading configuration from config server

From Dev

Spring Cloud Config: define server config properties programmatically

From Java

Spring Cloud Config Server vs ConfigMaps for cloud kubernetes

From Dev

Exclude Spring Cloud Config Server from Spring boot unit test

From Dev

Failed to disable decryption server side in spring cloud config server

From Dev

How to ask Spring Cloud Config server to checkout configuration from specific branch?

From Dev

How to refresh app instances using Spring cloud bus with data which isn't controlled by config server?

From Dev

Spring Config Server Vault Backend: cloud.config.server.vault or cloud.vault

From Dev

How to config routes in Spring Cloud Zuul

Related Related

  1. 1

    Share configuration between Spring cloud config clients

  2. 2

    How to use the Clients ip address within the function included in the server program?

  3. 3

    How use Spring Cloud Server without GitHub

  4. 4

    Spring Cloud Config Server - How to download binary file

  5. 5

    How to set system variable from Spring Cloud Config Server

  6. 6

    Externalizing Spring Cloud Data Flow Config - Spring Cloud Config Server

  7. 7

    Externalizing Spring Cloud Data Flow Config - Spring Cloud Config Server

  8. 8

    How to use a custom ssh key location with Spring Cloud Config

  9. 9

    How to use Spring Cloud Config with a Git and Vault composite environment repository?

  10. 10

    Spring Cloud Config Server without Spring Boot

  11. 11

    How to use spring-config-server with vertx using https?

  12. 12

    Spring Cloud Config Client not fetching config when Spring Security is active on Spring Cloud Config Server

  13. 13

    Spring Cloud Config Server - Security Details

  14. 14

    Spring Cloud Config Server - Placeholder Label

  15. 15

    Disable Spring Cloud Server Config using profile?

  16. 16

    Pattern matching for profile in Spring Cloud Config Server

  17. 17

    Spring Cloud Config Server plain text

  18. 18

    Modify spring cloud config server in the client

  19. 19

    Configuring Spring Cloud Config Server and Spring Cloud Vault for production

  20. 20

    Include common config for multiple apps in Spring Cloud Config server

  21. 21

    spring cloud config client not loading configuration from config server

  22. 22

    Spring Cloud Config: define server config properties programmatically

  23. 23

    Spring Cloud Config Server vs ConfigMaps for cloud kubernetes

  24. 24

    Exclude Spring Cloud Config Server from Spring boot unit test

  25. 25

    Failed to disable decryption server side in spring cloud config server

  26. 26

    How to ask Spring Cloud Config server to checkout configuration from specific branch?

  27. 27

    How to refresh app instances using Spring cloud bus with data which isn't controlled by config server?

  28. 28

    Spring Config Server Vault Backend: cloud.config.server.vault or cloud.vault

  29. 29

    How to config routes in Spring Cloud Zuul

HotTag

Archive