博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(九)整合spring cloud云服务架构 - commonservice-config配置服务搭建
阅读量:5799 次
发布时间:2019-06-18

本文共 4108 字,大约阅读时间需要 13 分钟。

1. 介绍

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

4.0.0
com.ml.honghu
commonservice
0.0.1-SNAPSHOT
commonservice-config
jar
commonservice-config
Config Server
org.springframework.cloud
spring-cloud-config-server
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-starter-security
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-maven-plugin
1
repackage
2
build-info
复制代码

3. 在src/main/java进行ConfigApplication.java启动文件配置:

package com.ml.honghu; import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.config.server.EnableConfigServer;import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @EnableConfigServer@EnableEurekaClient@SpringBootApplicationpublic class ConfigApplication {     public static void main(String[] args) {        SpringApplication.run(ConfigApplication.class, args);    }}复制代码

4. 在src/main/resource下进行bootstrap.yml配置

server: port: 8888spring:  application:    name: commonservice-config-server  profiles:    active: discovery,native  cloud:    config:      server:        git:          uri: http://192.168.0.254/honghu.../honghu-config.git          username: honghu          password: 123456          searchPaths: config-devsecurity:  basic:    enabled: true  user:    name: honghu    password: 123456eureka:  client:    serviceUrl:      defaultZone: http://honghu:123456@localhost:8761/eureka/      honghuZone: http://honghu:123456@localhost:8761/eureka/    registry-fetch-interval-seconds: 300    availability-zones:      honghu: honghuZone  instance:    prefer-ip-address: true    metadataMap:      version: 1.0      variant: A      user: ${security.user.name}      password: ${security.user.password}management:  security:    enabled: false复制代码

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

server: port: 8888spring:  application:    name: commonservice-config-server  profiles:    active: discovery,native  cloud:    config:      server:        native.searchLocations: d:/honghu-configsecurity:  basic:    enabled: true  user:    name: honghu    password: 123456eureka:  client:    serviceUrl:      defaultZone: http://honghu:123456@localhost:8761/eureka/      honghuZone: http://honghu:123456@localhost:8761/eureka/    registry-fetch-interval-seconds: 300    availability-zones:      honghu: honghuZone  instance:    prefer-ip-address: true    metadataMap:      version: 1.0      variant: A      user: ${security.user.name}      password: ${security.user.password}management:  security:    enabled: false复制代码

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

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

Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码请加企鹅求求: 一零叁八七七四六贰 

转载于:https://juejin.im/post/5c21fdcde51d453df4627be6

你可能感兴趣的文章
LeetCode--112--路径总和
查看>>
感悟贴2016-05-13
查看>>
百度编辑器ueditor 光标位置的坐标
查看>>
DEV-C++ 调试方法简明图文教程(转)
查看>>
参加婚礼
查看>>
刚毕业从事java开发需要掌握的技术
查看>>
vim
查看>>
Java重写equals方法和hashCode方法
查看>>
Spark API编程动手实战-07-join操作深入实战
查看>>
EasyUI基础入门之Easyloader(载入器)
查看>>
java中ArrayList 、LinkList区别
查看>>
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
查看>>
利用rand7()构造rand10()
查看>>
MySQL 备份与恢复
查看>>
吃午饭前,按书上的代码写会儿--Hunt the Wumpus第一个版本
查看>>
easyui中combobox的值改变onchang事件
查看>>
TEST
查看>>
PAT A1037
查看>>
ReactiveSwift源码解析(三) Signal代码的基本实现
查看>>
(六)Oracle学习笔记—— 约束
查看>>