本文共 5397 字,大约阅读时间需要 17 分钟。
springcloud架构搭建(一) Eureka服务器搭建及配置
今天开始准备学习一下springcloud的相关知识以及环境部署,并且搭建一套springcloud分布式框架:本文只针对刚开始接触或者没有接触过springcloud的小白
如果下面有什么不足之处请大家及时指出写这个博客的目的主要是为了大家共同学习交流、共同进步第一步,创建一个普通的springboot项目以下方法都可以快速创建一个boot项目:第二步,在pom.xml中添加依赖(以下是我的完整依赖)
4.0.0 com.eureka.server eureka-server-001 0.0.1 eureka-server-001 Maven Webapp http://maven.apache.org org.springframework.boot spring-boot-starter-parent 1.5.4.RELEASE UTF-8 UTF-8 1.8 Dalston.SR4 junit junit test org.springframework.cloud spring-cloud-starter-eureka-server org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-netflix-core com.google.guava guava org.springframework springloaded org.springframework.boot spring-boot-devtools true de.codecentric spring-boot-admin-starter-client 1.3.2 org.springframework.boot spring-boot-starter-actuator org.jolokia jolokia-core org.springframework.boot spring-boot-starter-security org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin
第三步,修改配置文件application-dev.properties
将application.properties文件名称修改为application-dev.properties。这个是生产环境的添加内容#appname默认spring.application.name=Eureka-H.A.#注册端口号server.port=8761#-----------------------编写者相关信息----------------------#-----------------------编写者相关信息----------------------info.owner=LTYinfo.version=@project.version@info.app.name=@project.name@info.app.version=@project.version@info.app.description=@project.description@info.app.spring-boot-version=@project.parent.version@#安全认证security.basic.enabled=falsesecurity.user.name=adminsecurity.user.password=123456spring.boot.admin.url=http://localhost:8080#------------------------服务与发现相关信息---------------------#------------------------服务与发现相关信息---------------------#不使用主机名来定义注册中心的地址,而使用IP地址的形式,如果设置了属性,则使用该属性配置的IP,否则自动获取除环路IP外的第一个IP地址# 注册时显示ipeureka.instance.prefer-ip-address=true#IP地址#eureka.instance.ip-address=localhost#是否注册为服务eureka.client.register-with-eureka=false#是否检索服务eureka.client.fetch-registry=false#设置当前实例的主机名称eureka.instance.hostname=localhost#定义服务续约任务(心跳)的调用间隔,单位:秒eureka.instance.lease-renewal-interval-in-seconds=30#定义服务失效的时间,单位:秒eureka.instance.lease-expiration-duration-in-seconds=90#状态页面的URL,相对路径,默认使用 HTTP 访问,如果需要使用 HTTPS则需要使用绝对路径配置eureka.instance.status-page-url-path=/info#健康检查页面的URL,相对路径,默认使用 HTTP 访问,如果需要使用 HTTPS则需要使用绝对路径配置eureka.instance.health-check-url-path=/health#健康检查页面的URL,绝对路径eureka.instance.health-check-url=/#关闭注册中心的保护机制,Eureka 会统计15分钟之内心跳失败的比例低于85%将会触发保护机制,不剔除服务提供者,如果关闭服务注册中心将不可用的实例正确剔除#关闭自我保护(生产时打开该选项)eureka.server.enable-self-preservation=true#扫描失效服务的间隔时间(缺省为60*1000ms)eureka.server.eviction-interval-timer-in-ms=5000#eureka默认空间的地址eureka.client.service-url.defaultZone=http://localhost:8761/eureka/
第四步,添加application.yml
spring: profiles: active: dev
第五步,修改Application类
添加注解 @EnableEurekaServer 该注解表明应用为eureka服务,有可以联合多个服务作为集群,对外提供服务注册以及发现功能 @SpringBootApplication(创建完的boot项目自带的启动注解,会加载一些配置)修改main() 方法
public static void main(String[] args) { new SpringApplicationBuilder(EurekaServerApplication.class).web(true).run(args); }
第六步,启动Application类
这里写图片描述配置完成!
转载于:https://blog.51cto.com/13545858/2153045