Config:客户端连接服务端访问远程-实战

1. Git环境搭建

1.1 码云创建仓库

1.2 git配置用户信息

1.3 生成密钥

接着回车就可以生成

在.ssh文件夹下就会生成文件id_rsa.pub,复制文件内容

1.4 克隆项目

1.5 编写配置文件

新建application.yml

spring:
  profiles:
    active: dev
---
spring:
  profiles: dev
  application:
    name: springcloud-config-dev
---
spring:
  profiles: test
  application:
    name: springcloud-config-test

1.6 提交操作

a. 把新加的文件提交到暂存区

git add .           //会把当前被修改的文件全部提交上去

b. 查看文件状态

git status          //查看文件状态

c. 提交

git commit -m "first commit"            //提交 -m "附带的消息"

d. push到远端

git push origin master          //push到远程,origin:当前用户,master:要push的分支

e. 成功

2. 服务端连接Git配置

2.1 新建模块

2.2 导入依赖



    org.springframework.cloud
    spring-cloud-config-server
    2.1.1.RELEASE



    org.springframework.boot
    spring-boot-starter-web



    org.springframework.boot
    spring-boot-starter-actuator
    2.1.11.RELEASE

2.3 application.yml编写

server:
  port: 3344

spring:
  application:
    name: springcloud-config-server
  #连接远程仓库
  cloud:
      config:
        server:
          git:
            uri:  https://gitee.com/klzshow/springcloud-config.git  #https地址

# 通过 config-server可以连接到git, 访问其中的资源以及配置

连接使用HTTPS

2.4 启动类添加注解

2.5 启动,测试

通过http://localhost:3344/application-dev.yml访问该文件

访问成功

还可以http://localhost:3344/master/application-test.yml。

http://localhost:3344/application/test/mast该请求访问响应如下

3. 客户端连接服务端访问远程

3.1 新建config-client.yml文件

spring:
  profiles:
    active: dev
---
server:
  port: 8201
#spring的配置
spring:
  profiles: dev
  application:
    name: springcloud-provider-dept

#Eureka的配置,服务注册在哪里
eureka:
  client:
    service-url:
      defaultZone:  http://localhost:7002/eureka/,http://127.0.0.1:7003/eureka/

---
server:
  port: 8202
#spring的配置
spring:
  profiles: test
  application:
    name: springcloud-provider-dept

#Eureka的配置,服务注册在哪里
eureka:
  client:
    service-url:
      defaultZone:  http://localhost:7002/eureka/,http://127.0.0.1:7003/eureka/

3.2 push到远端

和上述提交操作一致

3.3 新建模块

3.4 导入依赖



    org.springframework.cloud
    spring-cloud-starter-config
    2.1.1.RELEASE



    org.springframework.boot
    spring-boot-starter-web



    org.springframework.boot
    spring-boot-starter-actuator
    2.1.11.RELEASE

3.5 bootstrap.yml编写

bootstrap.yml:系统级别的配置

application.yml:用户级别的配置

这里有可能跟远程的冲突,所以在这里配置一个根加载器,通过它来保证我们配置的是OK的

bootstrap.yml配置

#系统级别的配置(高于用户级别的配置)
#只能识别application.yml和boostrap.yml,别的名字不能识别
spring:
  cloud:
    config:
      #springcloud-config采用的是sv(服务器客户端)的架构模式
      #服务器(3344)连gitee,客户端(3355)连服务器
      uri: http://localhost:3344  #服务器地址
      name: config-client         #需要从gitee上读取的资源名称
      profile: dev                #开发模式  test是测试模式
      label: master               #geitee的分支

application.yml配置

#用户级别的配置
spring:
  application:
    name: springcloud-config-client-3355

3.6 Controller层获取文件信息

package com.common.springcloud.controller;
/**
 * 写这个controller这是为了证明客户端能通过服务端从gitee拿到数据
 * 这里把数据打印出来了
 * 可以不写这个controller,在bootstrap.yml和application.yml写配置就行了
 */
@RestController
public class ConfigClientController {
    @Value("${spring.application.name}")
    private String applicationName;
    @Value("${eureka.client.service-url.defaultZone}")
    private String eurekaServer;
    @Value("${server.port}")
    private String port;
    @RequestMapping("/config")
    public String getConfig() {
        return "applicationName:"+applicationName+
                "eurekaServer:"+eurekaServer+
                "port:"+port;
    }
}

3.7 启动类编写

3.8 启动,测试

a. 先保证3344服务端可以连到远程

我们没有在配置文件中配置端口号,

但是在bootstrap.yml文件中读取的是dev的配置,所以端口号是config-client.yml中的dev环境的端口8201。

c. 读取信息成功

d. 修改bootstrap.yml文件

改为test

这时端口号变为8202,说明我们现在走的是test环境

4. 远程配置实战测试

4.1 新建配置文件config-eureka.yml

直接从7001模块中拿出配置文件,添加两个个Spring配置,一个dev环境,一个test环境,默认启动dev

4.1 新建配置文件config-dept.yml

从8001模块中拿出配置文件,配置Spring配置,一个dev,一个test,一个数据库访问db01,一个访问db02,再配置启用dev配置

4.2 两个文件push到远端

操作如上

4.3 建立新模块

直接复制eureka中的代码,和依赖



    org.springframework.cloud
    spring-cloud-starter-eureka-server
    1.4.6.RELEASE



    org.springframework.boot
    spring-boot-devtools

导入config的包



    org.springframework.cloud
    spring-cloud-config-server
    2.1.1.RELEASE

4.4 配置文件

把原来的application.yml中的内容清空,新建bootstrap.yml文件

bootstrap.yml文件

application.yml文件配置

4.5 编写启动类

4.6 启动,测试

a. 先保证3344服务端可以连到远程

b. 能访问7001

说明它可以从远端读取配置文件config-eureka.yml文件,因为该模块没有配置端口号

4.7 新建模块

复制provider-dept-8001

依赖拿过来



    com.common
    springcloud-api
    1.0-SNAPSHOT



    junit
    junit



    mysql
    mysql-connector-java



    com.alibaba
    druid



    ch.qos.logback
    logback-core



    org.mybatis.spring.boot
    mybatis-spring-boot-starter



    org.springframework.boot
    spring-boot-test



    org.springframework.boot
    spring-boot-starter-web



    org.springframework.boot
    spring-boot-starter-jetty



    org.springframework.boot
    spring-boot-devtools



    org.springframework.cloud
    spring-cloud-starter-eureka
    1.4.6.RELEASE



    org.springframework.boot
    spring-boot-starter-actuator

8001中src里的东西复制过来

导入config的依赖



    org.springframework.cloud
    spring-cloud-config-server
    2.1.1.RELEASE

4.8 配置文件

application.yml中内容清空,新建bootstrap.yml文件

bootstrap.yml文件的编写

application.yml文件的编写

4.9 启动类启动

访问成功

你可能感兴趣的:(Config:客户端连接服务端访问远程-实战)