springCloud学习笔记(一)——eureka服务注册中心
一、eureka是什么?
Spring-Cloud Euraka是Spring Cloud集合中一个组件,它是对Euraka的集成,用于服务注册和发现。Eureka是Netflix中的一个开源框架。它和 zookeeper、Consul一样,都是用于服务注册管理的,同样,Spring-Cloud 还集成了Zookeeper和Consul。
在项目中使用Spring Cloud Euraka的原因是它可以利用Spring Cloud Netfilix中其他的组件,如zull等,因为Euraka是属于Netfilix的。
eureka详细划分可分为三个部分:
- Eureka Server 提供服务注册和发现- Service Provider 服务提供方,将自身服务注册到Eureka,从而使服务消费方能够找到- Service Consumer服务消费方,从Eureka获取注册服务列表,从而能够消费服务
此文章仅针对Eureka Server服务注册和发现进行学习。
二、构建项目
1.引入jar包
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency>
2.完整pom内容
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><parent><artifactId>com.springcloud</artifactId><groupId>com.sc2020</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>cloud-eureka-server7001</artifactId><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency><!-- 引入自定义的api通用包,可以使用Payment支付Entity --><dependency><groupId>com.sc2020</groupId><artifactId>cloud-api-commons</artifactId><version>1.0-SNAPSHOT</version></dependency><!-- boot web actuator --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency><!-- 一般通用配置 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><scope>runtime</scope></dependency><!-- 热部署 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><scope>runtime</scope><optional>true</optional></dependency><!-- 单元测试 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies></project>
3.yml配置文件
server:port: 7001eureka:instance:hostname: eureka7001.com #eureka服务端的实例名称client:register-with-eureka: false #false表示不向注册中心注册自己fetch-registry: false #false表示自己端就是注册中心service-url:defaultZone: http://eureka7001.com:7001/eureka/ #单机# defaultZone: http://eureka7001.com:7001/eureka/, http://eureka7002.com:7002/eureka/ #集群, eureka7001.com在配置hosts文件时生效,未配置时使用localhost代替server:# 关闭自我保护机制,保证不可用服务被及时剔除enable-self-preservation: falseeviction-interval-timer-in-ms: 2000spring:application:name: cloud-eureka-service7001
注意:eureka7001.com在配置hosts文件时生效,未配置时使用localhost代替
4.Application,main方法
@SpringBootApplication@EnableEurekaServerpublic class CloudEurekaServer7001Application {public static void main(String[] args) {SpringApplication.run(CloudEurekaServer7001Application.class, args);}}
在main方法中声明使用@EnableEurekaServer组件。
三、方法运行
输入地址 : 出现此页面则成功配置服务注册中心。

项目地址:
