《从搭建微服务框架到深入理解Spring Cloud---(一) 服务注册与发现之Eureka篇》

搭建注册中心

导入pom依赖



 
 sakura
 com.warm-sun
 1.0.0
 
 4.0.0registry-center
 jar
 registry-center
 微服务注册中心
 
 UTF-8
 1.8
 
 
 
 org.springframework.cloud
 spring-cloud-starter-netflix-eureka-server
 2.0.2.RELEASE
 
 
 
 org.springframework.cloud
 spring-cloud-starter-security
 2.0.1.RELEASE
 
 
 
 org.springframework.cloud
 spring-cloud-starter-config
 2.0.2.RELEASE
 
 
 
 org.springframework.boot
 spring-boot-starter-web
 
 
 
 org.springframework.cloud
 spring-boot-starter-tomcat
 
 
 
 
 
 org.springframework.boot
 spring-boot-starter-undertow
 2.0.4.RELEASE
 
 
 
 
 
 org.springframework.boot
 spring-boot-maven-plugin
 
 ${project.name}
 
 
 
 com.spotify
 docker-maven-plugin
 0.4.12
 
 ${registry.url}/${project.name}:0.0.1
 ${docker.url}
 ${project.basedir}
 
 
 /
 ${project.build.directory}
 ${project.build.finalName}.jar
 
 
 docker-hub
 https://index.docker.io/v1/
 
 
 
 

编写bootstrap.yml,配置eureka注册信息

#配置端口号
server:
 port: 2000
​
# 配置eureka 安全验证账户
spring:
 security:
 user:
 name: sakura
 password: Sakura*&^999
 application:
 name: registry-center
 cloud:
 config:
 enabled: false
​
# eureka 配置
eureka:
 instance:
 hostname: localhost
 prefer-ip-address: false
​
 client:
 #只有一个eureka注册中心 不需要自己向自己注册 当服务需要搭建集群的时候 registerwitheurka设置为true
 registerWithEureka: false
 # 表示从其他的配置中心同步数据,默认为true;当前只有一个配置中心,所以设置为false
 fetchRegistry: false
 serviceUrl:
 # 多个地址用,隔开 并相互注册
 defaultZone: http://sakura:Sakura*&^999@${eureka.instance.hostname}:${server.port}/eureka/

 #配置eureka心跳等
 server:
 eviction-interval-timer-in-ms: 4000
 enable-self-preservation: false
 renewal-percent-threshold: 0.9

配置启动类


import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
​
/** 注册中心服务端
 * @author tuxiaolei
 * @date 2018/11/23
 */
@EnableEurekaServer
@SpringBootApplication
public class RegistryApplication {
 public static void main(String[] args) {
 SpringApplication.run(RegistryApplication.class,args);
 }
}

配置安全登录信息

import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer;
​
/**
 * @author tuxiaolei
 * @date 2018/11/23
 */
@EnableWebSecurity
public class RegistrySecurityConfig extends WebSecurityConfigurerAdapter {
 @Override
 protected void configure(HttpSecurity http) throws Exception {
 http.csrf().disable()
 .authorizeRequests()
 .antMatchers().permitAll()
 .anyRequest()
 //开启表单验证
 .authenticated().and().httpBasic();
 }
}

这样我们的Eureka配置中心就完成了

Eureka 架构

《从搭建微服务框架到深入理解Spring Cloud---(一) 服务注册与发现之Eureka篇》_第1张图片
Eureka 官方架构图

首先我们要明白几个概念:

  1. Application Client(Service Consumer) : 服务消费者、应用客户端,在微服务架构中很多微服务既是服务的提供者也是服务的消费者,这种情况下,微服务是需要往注册中心注册的。从注册中心获取到服务提供者列表。

  2. Application Service(Service Provider): 服务的提供者,需要向注册中心注册、续约、下线 ,往注册中心发送心跳

  3. Eureka Server: 注册中心服务端,接收客户端的心跳,默认90秒没接收客户端的心跳下线这个客户端。

  4. Eureka Server: 注册中心客户端,注册客户端信息,方便服务消费者获取到提供者的地址、端口等的。

要理解eureka 首先我们得明白 eureka解决了什么:

我们知道:现在开发已经有传统的单系统开发转变成了实现流行的分布式开发和微服务开发,不同的业务被划分成不同的模块,部署到不同的服务器实例上,对于并发量大的模块(比如:订单模块、团购模块)往往来说要搭建集群,那么我们在服务调用的时候怎么知道我部署的服务在哪个服务器上,同个服务的多个实例我应该调取哪个,哪个服务是健康的,哪个服务宕机了,我们的eureka就很好的解决了这些问题。

Eureka 就像一个智能版的微信,我想跟A聊天的时候,我就去找A的通讯信息,新结识了B,将B的信息存到通讯录里,当B改了头像,那么第一时间我也能知道。只不过我们的Eureka更为强大!

根据上续场景,我们来考虑一下如何实现:

1.服务注册后如何及时发现注册信息

2.服务宕机后怎,如何及时下线服务

3.服务如何做水平扩展,解决性能瓶颈

4服务注册发现后,调用微服务怎么做路由

5.服务发生异常怎么做降级处理

6.注册中心如何实现自身高可用

这里我们先留下悬念,我会在后续的博客中,针对eureka的源码进行解析。

你可能感兴趣的:(《从搭建微服务框架到深入理解Spring Cloud---(一) 服务注册与发现之Eureka篇》)