一. SpringCloud参考资料
- 官网 http://projects.spring.io/spring-cloud/
- SpringCloud中国社区 http://springcloud.cn/
- SpringCloud中文网 https://springcloud.cc/
二. Eureka 基本架构
- 架构图
- 三大角色
- Eureka Server 提供服务注册和发现
- Service Provider服务提供方将自身服务注册到Eureka,从而使服务消费方能够找到
- Service Consumer服务消费方从Eureka获取注册服务列表,从而能够消费服务
三.工程搭建
- 工具及版本
开发工具:IDEA
SpringCloud版本:Dalston.SR3
SpringBoot版本:1.5.9.RELEASE (在此处需要注意,SpringBoot和SpringCloud的大版本号需要对应)
-
springCloud版本 springBoot版本
1.5.9.RELEASE Dalston.SR3
2.0.3.RELEASE Finchley.RELEASE
版本不对应报错结果:java.lang.NoSuchMethodError: org.springframework.boot.builder.SpringApplicationBuilder
- 创建工程
- (1)IDEA新建工程file-->new-->Project
(2)创建成功之后,添加pom文件
-
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Dalston.SR3</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
<!-- 将微服务provider侧注册进eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency>
-
(3) application.yml
server: port: 7001 eureka: instance: hostname: localhost #eureka服务端的实例名称 client: register-with-eureka: false #false表示不向注册中心注册自己。 fetch-registry: false #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务 service-url: defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ #设置与Eureka Server交互的地址查询服务和注册服务都需要依赖这个地址(单机)。 #集群 defaultZone: http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
-
(4) 主启动类添加注解
@EnableEurekaServer
-
(5)启动运行
在启动之后,No application available 没有服务被发现 …
是因为你还没有服务注册到服务中心。
四、 创建一个服务提供者 (eureka client)
同理上面,创建程序
-
添加pom.xml文件,pom.xml 文件如下图。
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.yh.springcloud</groupId> <artifactId>springclod-provider-dept-8001</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springclod-provider-dept-8001</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> <!-- 将微服务provider侧注册进eureka --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <!-- 修改后立即生效,热部署 --> <dependency> <groupId>org.springframework</groupId> <artifactId>springloaded</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Dalston.SR3</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <!-- <build> <finalName>springclodproviderdept8001</finalName> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <delimiters> <delimit>$</delimit> </delimiters> </configuration> </plugin> </plugins> </build> --> </project>
- application.yml配置如下。
server: port: 8001 spring: application: name: microservicecloud-provider-dept eureka: client: #客户端注册进eureka服务列表内 service-url: defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/ instance: instance-id: microservicecloud-dept8001 prefer-ip-address: true #访问路径可以显示IP地址
-
主启动类添加注解 @EnableEurekaClient,如图所示
先启动服务程序,再启动注册中心,如下图所示。
至此Eureka的服务注册中心就搭建完毕了。
在搭建项目需要特别注意
1. SpringCloud 和SpringBoot的大版本号需要对应.
欢迎大家与我留言互动, 如果需要视频资源,也可以与我联系 QQ:1731765178