(九)整合spring cloud云服务架构 - commonservice-config配置服务搭建

  1. 介绍

Spring Cloud Config为分布式系统中的外部配置提供服务器和客户端支持。使用Config Server,您可以在所有环境中管理应用程序的外部属性。客户端和服务器上的概念映射与Spring EnvironmentPropertySource抽象相同,因此它们与Spring应用程序非常契合,但可以与任何以任何语言运行的应用程序一起使用。随着应用程序通过从开发人员到测试和生产的部署流程,您可以管理这些环境之间的配置,并确定应用程序具有迁移时需要运行的一切。服务器存储后端的默认实现使用git,因此它轻松支持标签版本的配置环境,以及可以访问用于管理内容的各种工具。很容易添加替代实现,并使用Spring配置将其插入。(企业架构源码可以加求球:叁五三陆二肆柒二伍玖)

  1. 引入pom相关jar包,其中pom.xml配置如下:
1.   
2.   
4.   4.0.0 

6.    
7.   com.ml.honghu 
8.   commonservice 
9.   0.0.1-SNAPSHOT 
10.    

12.   commonservice-config 
13.   jar 

15.   commonservice-config 
16.   Config Server 

18.    
19.    
20.   org.springframework.cloud 
21.   spring-cloud-config-server 
22.    
23.    
24.   org.springframework.cloud 
25.   spring-cloud-starter-eureka 
26.    
27.    
28.   org.springframework.boot 
29.   spring-boot-starter-security 
30.    
31.    
32.   org.springframework.boot 
33.   spring-boot-starter-test 
34.   test 
35.    
36.    

38.    
39.    
40.    
41.   org.springframework.boot 
42.   spring-boot-maven-plugin 
43.    
44.    
45.   1 
46.    
47.   repackage 
48.    
49.    
50.    
51.   2 
52.    
53.   build-info 
54.    
55.    
56.    
57.    
58.    
59.    
60.  
  1. 在src/main/java进行ConfigApplication.java启动文件配置:
1.  package com.ml.honghu; 

3.  import org.springframework.boot.SpringApplication; 
4.  import org.springframework.boot.autoconfigure.SpringBootApplication; 
5.  import org.springframework.cloud.config.server.EnableConfigServer; 
6.  import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 

8.  @EnableConfigServer 
9.  @EnableEurekaClient 
10.  @SpringBootApplication 
11.  public class ConfigApplication { 

13.   public static void main(String[] args) { 
14.   SpringApplication.run(ConfigApplication.class, args); 
15.   } 
16.  }
  1. 在src/main/resource下进行bootstrap.yml配置
1.  server: 
2.  port: 8888 
3.  spring: 
4.   application: 
5.   name: commonservice-config-server 
6.   profiles: 
7.   active: discovery,native 
8.   cloud: 
9.   config: 
10.   server: 
11.   git: 
12.   uri: http://192.168.0.254/honghu.../honghu-config.git 
13.   username: honghu 
14.   password: 123456 
15.   searchPaths: config-dev 
16.  security: 
17.   basic: 
18.   enabled: true 
19.   user: 
20.   name: honghu 
21.   password: 123456 
22.  eureka: 
23.   client: 
24.   serviceUrl: 
25.   defaultZone: http://honghu:123456@localhost:8761/eureka/ 
26.   honghuZone: http://honghu:123456@localhost:8761/eureka/ 
27.   registry-fetch-interval-seconds: 300 
28.   availability-zones: 
29.   honghu: honghuZone 
30.   instance: 
31.   prefer-ip-address: true 
32.   metadataMap: 
33.   version: 1.0 
34.   variant: A 
35.   user: ${security.user.name} 
36.   password: ${security.user.password} 
37.  management: 
38.   security: 
39.   enabled: false

注意: 如果不从远程git或者svn库加载配置文件信息,可以配置加载本地地址,比如window下配置使用:

1.  server: 
2.  port: 8888 
3.  spring: 
4.   application: 
5.   name: commonservice-config-server 
6.   profiles: 
7.   active: discovery,native 
8.   cloud: 
9.   config: 
10.   server: 
11.   native.searchLocations: d:/honghu-config 
12.  security: 
13.   basic: 
14.   enabled: true 
15.   user: 
16.   name: honghu 
17.   password: 123456 
18.  eureka: 
19.   client: 
20.   serviceUrl: 
21.   defaultZone: http://honghu:123456@localhost:8761/eureka/ 
22.   honghuZone: http://honghu:123456@localhost:8761/eureka/ 
23.   registry-fetch-interval-seconds: 300 
24.   availability-zones: 
25.   honghu: honghuZone 
26.   instance: 
27.   prefer-ip-address: true 
28.   metadataMap: 
29.   version: 1.0 
30.   variant: A 
31.   user: ${security.user.name} 
32.   password: ${security.user.password} 
33.  management: 
34.   security: 
35.   enabled: false

到此,整个config服务项目配置完毕!!

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

你可能感兴趣的:(spring,java,小程序)