Spring Cloud config-Quick Start

Source: Internet
Author: User

Start the server:

$ cd spring-cloud-config-server$ ../mvnw spring-boot:run

the server is a spring boot application, so you can run it from the IDE instead of liking it (the main class is ConfigServerApplication ). then try a client:

$ curl localhost:8888/foo/development{"name":"development","label":"master","propertySources":[  {"name":"https://github.com/scratches/config-repo/foo-development.properties","source":{"bar":"spam"}},  {"name":"https://github.com/scratches/config-repo/foo.properties","source":{"foo":"bar"}}]}

The default strategy for locating resources is to clone a git repository (in spring.cloud.config.server.git.uri ) and use it to initialize a mini SpringApplication . A small application is Environment used to enumerate property sources and publish through JSON endpoints.

The HTTP service has resources in the following format:

/{application}/{profile}[/{label}]/{application}-{profile}.yml/{label}/{application}-{profile}.yml/{application}-{profile}.properties/{label}/{application}-{profile}.properties

Where "Application" is SpringApplication injected as in spring.config.name (that is, the regular spring boot application is typically "application"), the profile is the active profile (or a comma-separated list of properties), and "label" is an optional git tag (default is "Master").

Spring Cloud Config server provides configuration for remote clients from a git repository (must be provided): source

spring:  cloud:    config:      server:        git:          uri: https://github.com/spring-cloud-samples/config-repo

Spring Cloud config-Quick Start

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.