美文网首页
Spring Cloud Config客户端使用

Spring Cloud Config客户端使用

作者: 万万558 | 来源:发表于2018-01-25 10:23 被阅读0次

    要在应用程序中使用这些功能,只需将其构建为依赖于spring-cloud-config-client的Spring引导应用程序(例如,查看配置客户端或示例应用程序的测试用例)。添加依赖关系的最方便的方法是通过Spring Boot启动器org.springframework.cloud:spring-cloud-starter-config。还有一个Maven用户的父pom和BOM(spring-cloud-starter-parent)和用于Gradle和Spring CLI用户的Spring IO版本管理属性文件。示例Maven配置:

    的pom.xml

     

          org.springframework.boot

          spring-boot-starter-parent

          1.3.5.RELEASE

         

    org.springframework.cloud

    spring-cloud-dependencies

    Brixton.RELEASE

    pom

    import

    org.springframework.cloud

    spring-cloud-starter-config

    org.springframework.boot

    spring-boot-starter-test

    test

             

                  org.springframework.boot

                  spring-boot-maven-plugin

    那么你可以创建一个标准的Spring Boot应用程序,像这个简单的HTTP服务器:

    @SpringBootApplication

    @RestController

    public class Application {

        @RequestMapping("/")

        public String home() {

            return "Hello World!";

        }

        public static void main(String[] args) {

            SpringApplication.run(Application.class, args);

        }

    }

    当它运行它将从端口8888上的默认本地配置服务器接收外部配置,如果它正在运行。要修改启动行为,您可以使用bootstrap.properties(如application.properties)更改配置服务器的位置,但用于应用程序上下文的引导阶段),例如

    spring.cloud.config.uri: http://myconfigserver.com

    引导属性将在/env端点中显示为高优先级属性源,例如

    $ curl localhost:8080/env

    {

      "profiles":[],

      "configService:https://github.com/spring-cloud-samples/config-repo/bar.properties":{"foo":"bar"},

      "servletContextInitParams":{},

      "systemProperties":{...},

      ...

    }

    (名为“configService:<远程存储库的URL> / <文件名>”的属性源包含值为“bar”的属性“foo”,是最高优先级)。

    从现在开始,我这边会将近期研发的spring cloud微服务云架构的搭建过程和精髓记录下来,帮助更多有兴趣研发spring cloud框架的朋友,希望可以帮助更多的好学者。大家来一起探讨spring cloud架构的搭建过程及如何运用于企业项目。

    相关文章

      网友评论

          本文标题:Spring Cloud Config客户端使用

          本文链接:https://www.haomeiwen.com/subject/qigmaxtx.html