Server端:
在eclipse上,创建Java Project项目。自带的src包删掉手动建文件夹。基础的目录文件都创建上

|--ZSpringCloud
|--build.gradle
|----src
|------main
|--------java
|--------resources

配置build.gradle文件:

buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.7.RELEASE")
classpath("org.springframework:springloaded:1.2.0.RELEASE")
classpath("nz.org.geonet:gradle-build-version-plugin:1.0.4")
classpath("io.spring.gradle:dependency-management-plugin:0.5.6.RELEASE")
}
} apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'io.spring.dependency-management' jar {
baseName = 'spring-cloud-service'
version = '0.0.1'
} repositories {
maven { url "https://repo.spring.io/libs-milestone" }
mavenLocal()
mavenCentral()
} dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-netflix:1.2.0.M1'
mavenBom 'org.springframework.cloud:spring-cloud-dependencies:Camden.SR2'
}
} sourceCompatibility = 1.8
targetCompatibility = 1.8 dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile("org.springframework.cloud:spring-cloud-starter-parent:Brixton.SR4")
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.cloud:spring-cloud-config-server")
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
}

当时报了很多错,从晚上找了很多东西,不记得哪个是解决问题的了,所有的依赖都粘上了应该有没用的。
现在已经有了空文件夹,和一个写好的build.gradle文件,打开一个终端进入ZSpringCloud目录。

gradle eclipse

eclipse调成Spring的视图看的更舒服写。执行完成后这个样子(现在还没有build文件夹),确保项目没有一个大感叹号。

在src/main/java里创建main类(Application名字随便起),先建个空的。

public class Application {
public static void main(String[] args) {
}
}

现在有程序入口,在终端执行

gradle build
gradle eclipse

确保执行成功,中间应该不会出错了,出错搜一下。
修改Application类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.cloud.config.server.EnableConfigServer;
import org.springframework.context.annotation.Configuration; @Configuration
@EnableAutoConfiguration
@EnableConfigServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

在src/main/resources里创建两个文件,application.properties和bootstarp.properties

#<application.properties>
server.port=8888             #Server跑的端口 security.basic.enabled=false      #这两个spring验证的,不加这个两个会报一个
management.security.enabled=false   #Spring的安全的什么错误,应该能解决,但是现在先不管。如果不加访问的时候需要用户名和密码,这个用户和密码不知道在哪
#<bootstrap.properties>
spring.cloud.config.server.git.uri=git@192.168.1.6:fzk/SpringCloudTest.git    #是从哪个地方获取配置文件,ssh路径的跑通了,http待研究
#spring.cloud.config.server.git.uri=http://192.168.1.6/root/SpringCloudTest.git
spring.cloud.config.server.git.searchPaths=repo                    #这个是进入上面的路径后,从哪个文件夹搜索文件 #spring.application.name=configserver                          
#spring.application.label=master                             #label名,分支名,如果写了,以后在获取的时候需要加上{label}

现在就已经能启动项目了,先启动一下看看哪里报错了。没报错先放着,还有一大堆服务器的东西需要配置。

我自己在另外一个虚拟机上搭了一个gitlab,这个可以不用自己搭,随便找个gitlab库能放代码就可以了。如果自己搭了最好设成静态ip。(虚拟机ip:192.168.1.6)

在gitlab上建一个存配置文件的项目<SpringCloudTest>,在本地建一个SpringCloudTest的文件夹,在里面建一个repo文件夹,repo里建一个fzk-beta.properties文件
|SpringCloudTest
|--repo
|----fzk-beta.properties

把这个项目推上gitlab建的项目上,从本地文件夹push的方法在gitlab剪完项目后最下面的那块告诉怎么弄了。
gitlab剪完项目后点击项目名就看见两个地址,ssh和http,就是在Server端 bootstrap.properties的 spring.cloud.config.server.git.uri 配置的路径。
现在项目已经建完了,开始服务器的配置。现在有两个服务器,一个是跑Server的A,一个gitlab的B。
在A上,用什么用户跑这个程序就用什么用户生成一对秘钥,我全是用普通用户跑的。在A上执行

ssh-keygen -t rsa

在用户的~/.ssh/ 目录下会生成一对秘钥,id_rsa    id_rsa.pub。把id_rsa.pub的内容复制到gitlab项目的Deploy Keys中
Deploy Keys的位置在:在浏览器上找到你的那个项目,右上角有个一看就是设置的按钮,点开就能找到Deploy Keys ,点击进入title就是随便起的名,下面大的文本框里粘贴上刚才从公钥中复制的内容。确保最下面秘钥列表中刚才弄的那个公钥是enable的。默认就是。

在A上通过ssh 链接一下gitlab的服务器,保证A上能识别这个ip。问是不是永久储存在knowhosts中,yes。

ssh root@192.168.1.6

如果现在就开始访问,还是不成功,说什么不识别B的ip或者秘钥不对之类的错误。
在A上进入 ~/.ssh/  目录,vim config。把下面内容复制上,改一下。

Host 192.168.1.6                #B的域名或ip
RSAAuthentication yes             #是否公钥验证
StrictHostKeyChecking no            #看这个意思应该是什么严格的验证之类的
IdentityFile /home/fzk/.ssh/id_rsa     #通过公钥验证的私钥的位置
User fzk                     #在gitlab上注册的用户名,登陆的时候的那个

好,现在就已经全部完事了。
在浏览器上输入:
http://localhost:8888/fzk/beta

{"name":"fzk","profiles":["beta"],"label":"master","version":"ebcf17eac0699644200aca3b8b0d1a23563ce242","state":null,"propertySources":[{"name":"git@192.168.1.6:fzk/SpringCloudTest.git/repo/fzk-beta.properties","source":{"server.port":"8013","fzk.nick":"badboy"}}]}

http://localhost:8888/fzk-beta.properties

fzk.nick: badboy
server.port: 8013
访问格式:
/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties

ubuntu14.04 spring cloud config server + gradle搭建的更多相关文章

  1. 为Spring Cloud Config Server配置远程git仓库

    简介 虽然在开发过程,在本地创建git仓库操作起来非常方便,但是在实际项目应用中,多个项目组需要通过一个中心服务器来共享配置,所以Spring Cloud配置中心支持远程git仓库,以使分散的项目组更 ...

  2. Spring Cloud Config Server 节点迁移引起的问题,请格外注意这一点!

    前言: 虽然强烈推荐选择使用国内开源的配置中心,如携程开源的 Apollo 配置中心.阿里开源的 Nacos 注册&配置中心. 但实际架构选型时,根据实际项目规模.业务复杂性等因素,有的项目还 ...

  3. 搭建spring cloud config

    很久没更新了,因为不是专职研究spring cloud,因此更新速度得看工作强度大不大,每天能抽出的时间不多,如果更新太慢了,并且有小伙伴看的话,请见谅了. Spring Cloud简介 Spring ...

  4. Spring Cloud Config(三):基于JDBC搭建配置中心

    1.简介 本文主要内容是基于jdbc搭建配置中心,使应用从配置中心读取配置信息并成功注册到注册中心,关于配置信息表结构仅供参考,大家可以根据具体需要进行扩展. 2.Config Server 搭建 2 ...

  5. Spring Cloud Config(二):基于Git搭建配置中心

    1.简述 本文选用Git作为配置仓库,新建两个环境的配置文件夹,dev 和 test,文件夹中分别存放 Config Client 端的配置文件,目录结构如下: ├ ─ ─ dev └ ─ ─ con ...

  6. Spring Cloud搭建手册(2)——Spring Cloud Config

    ※在Dalston.SR2版本以后,均不能正常加密,如果必须使用此功能,需要降级到SR1或Camden SR7. 1.首先需要创建一个config-server工程,作为配置中心的服务器,用来与git ...

  7. Spring Cloud Config 搭建Config 服务

    配置中心: open API 配置生效监控 一致性的K-V存储 统一配置的实时推送 配置全局恢复.备份.历史版本 高可用集群 通过config 获取配置,流程: 下面介绍,基于spring cloud ...

  8. Spring Cloud config之三:config-server因为server端和client端的健康检查导致服务超时阻塞问题

    springcloud线上一个问题,当config-server连不上git时,微服务集群慢慢的都挂掉. 在入口层增加了日志跟踪问题: org.springframework.cloud.config ...

  9. Spring Cloud官方文档中文版-Spring Cloud Config(上)

    官方文档地址为:http://cloud.spring.io/spring-cloud-static/Dalston.SR2/#spring-cloud-feign 文中例子我做了一些测试在:http ...

随机推荐

  1. 【VBA】设置Excle最近使用文件清单数量

    打开Excle,点击"文件"------"最近使用的文件",如下图: 根据上图可以看到,最近使用的文件数目为11个,那么是怎么实现的呢?具体代码如下: Publ ...

  2. java swing内嵌浏览器,隐藏滚动条

    1 通过定义css样式表来解决 1 html{overflow-y:scoll;overflow:-moz-scrollbars-vertical;} 2 body{width:680px;heigh ...

  3. [Material Design] 教你做一个Material风格、动画的button(MaterialButton)

    原创作品,转载请注明出处:http://blog.csdn.net/qiujuer/article/details/39831451 前段时间Android L 公布了,相信看过公布会了解过的朋友都为 ...

  4. wxWidgets之wxGrid控件

    1. 介绍 wxGrid控件时wxWidgets界面库中内置的网格控件. 通经常使用来显示表格数据.该控件拥有强大的功能.开发人员可依据自己的需求对其进行定制. 2. 经常使用API      构造函 ...

  5. 还在用系统自带的?那你那就OUT了!

    相信如今的APP10个里面有九个是有Tabbar的,可是非常多人甚是非常多公司都在用系统自带的tabbar.当然这也不是不能够,并且项目中就那几行代码.效果又一样. 可是,别忘了另一个可是.然并卵.这 ...

  6. stage3D基础二-----顶点和片段着色器(转)

    来源:http://www.adobe.com/cn/devnet/flashplayer/articles/vertex-fragment-shaders.html 本教程将介绍着色器.着色器是 S ...

  7. 过年啦!小B高兴的不行了,她收到了很多红包,可以实现好多的愿望呢。小B可是对商店货架上心仪的货物红眼好久了,只因囊中羞涩作罢,这次她可是要大大的shopping一番。小B想去购物时,总是习惯性的把要买的东西列在一个购买清单上,每个物品单独列一行(即便要买多个某种物品),这次也不例外。

    include "stdafx.h" #include<iostream> #include<vector> #include <algorithm& ...

  8. Google Code Jam 2014 Round 1 A:Problem C. Proper Shuffle

    Problem A permutation of size N is a sequence of N numbers, each between 0 and N-1, where each numbe ...

  9. Docker-Compose 自动创建的网桥与局域网冲突解决方案

    环境: 使用docker-compose.yml 部署应用,docker 默认的网络模式是bridge ,默认网段是172.17.0.1/16  ,不巧的是我们局域网也使用的172.22. xx 网段 ...

  10. <Netty>(入门篇)TIP黏包/拆包问题原因及换行的初步解决之道

    熟悉TCP编程的读者可能都知道,无论是服务端还是客户端,当我们读取或者发送消息的时候,都需要考虑TCP底层的粘包/拆包机制.木章开始我们先简单介绍TCP粘包/拆包的基础知识,然后模拟一个没有考虑TCP ...