接上篇:

Eureka作为注册中心,连接服务端与客户端;

服务端:

依赖包:

  1. apply plugin: 'org.springframework.boot'
  2. apply plugin: 'io.spring.dependency-management'
  3.  
  4. ext {
  5. springCloudVersion = 'Edgware.SR4'
  6. }
  7.  
  8. dependencies {
  9. compile 'org.springframework.boot:spring-boot-starter-web'
  10. compile 'org.springframework.boot:spring-boot-starter-actuator'
  11.  
  12. compile 'org.springframework.cloud:spring-cloud-starter-eureka'
  13. compile 'org.springframework.cloud:spring-cloud-config-client'
  14. compile 'org.springframework.cloud:spring-cloud-starter-bus-amqp'
  15.  
  16. compile 'org.springframework:springloaded'
  17. compile 'org.springframework.boot:spring-boot-devtools'
  18. }
  19.  
  20. dependencyManagement {
  21. imports {
  22. mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  23. }
  24. }

启动类:

  1. import org.springframework.boot.SpringApplication;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
  4. import org.springframework.cloud.context.config.annotation.RefreshScope;
  5. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  6.  
  7. @SpringBootApplication
  8. @EnableEurekaClient
  9. @EnableCircuitBreaker
  10. public class ServerApplication {
  11.  
  12. public static void main(String[] args) {
  13. SpringApplication.run(ServerApplication .class, args);
  14. }
  15. }

配置文件app.yml

  1. server:
  2. port: 1800
  3.  
  4. eureka:
  5. client:
  6. service-url:
  7. defaultZone: http://localhost:8761/eureka
  8. instance:
  9. instance-id: server
  10. prefer-ip-address: true
  11.  
  12. info:
  13. app.name: a-server
  14. company.name: www.*.com

核心代码:服务提供者

  1. import java.util.List;
  2.  
  3. import org.springframework.cloud.netflix.feign.FeignClient;
  4. import org.springframework.web.bind.annotation.PostMapping;
  5. import org.springframework.web.bind.annotation.RequestBody;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7.  
  8. @FeignClient(name = "hello", fallbackFactory = HelloFallbackFactory.class)
  9. @ResponseBody
  10. public interface HelloApi {
  11.  
  12. @PostMapping(path = "/api/hello")
  13. public String sayHI(@RequestBody SayHiRequest request);
  14.  
  15. }

服务已接想口形式提供,注册到Eurka注册中心里:

  1. import org.springframework.stereotype.Component;
  2. import feign.hystrix.FallbackFactory;
  3.  
  4. @Component
  5. public class HelloFallbackFactory implements FallbackFactory<HelloApi> {
  6.  
  7. @Override
  8. public HelloApicreate(Throwable cause) {
  9. return new HelloApi() {
  10.  
  11. @Override
  12. public String sayHi(SayHiRequest request) {
  13. // TODO Auto-generated method stub
  14.  
  15. }
  16.  
  17. };
  18. }
  19.  
  20. }

  接口实现:

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.validation.annotation.Validated;
  4. import org.springframework.web.bind.annotation.RequestBody;
  5.  
  6. @Controller
  7. public class HelloApiImpl implements HelloApi {
  8.  
  9. @Override
  10. public String sayHi(@RequestBody @Validated SayHiRequest request) {
  11. //do somenting
  12. return "";
  13. }
  14.  
  15. }

 服务端搭建完成;

微服务架构里,接口一般抽象出来,将接口和接口实现抽离,放到不同的服务里面;

启动服务,当我注册中心htttp://127.0.0.1:8761/eureka 查看服务注册情况;

客户端:

通过注册中心查找服务,进行服务调用;

依赖包:重点是引入接口方提供jar包

  1. apply plugin: 'io.spring.dependency-management'
  2.  
  3. dependencies {
  4. compile 'org.springframework.cloud:spring-cloud-starter-eureka'
  5. compile 'org.springframework.cloud:spring-cloud-starter-ribbon'
  6. compile 'org.springframework.cloud:spring-cloud-starter-feign'
  7. compile 'org.springframework.cloud:spring-cloud-starter-config'
  8. compile 'org.springframework.boot:spring-boot-starter-web'
  9. compile 'org.springframework.boot:spring-boot-starter-actuator'
  10.  
  11. compile(project(':hello-api'))
  12. }
  13.  
  14. ext {
  15. springCloudVersion = 'Edgware.SR4'
  16. }
  17.  
  18. dependencyManagement {
  19. imports {
  20. mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
  21. }
  22. }

 启动类:

  1. import org.springframework.boot.SpringApplication;
  2. import org.springframework.cloud.client.SpringCloudApplication;
  3. import org.springframework.cloud.netflix.feign.EnableFeignClients;
  4.  
  5. @SpringCloudApplication
  6. @EnableFeignClients
  7. public class ClientApplication {
  8.  
  9. public static void main(String[] args) {
  10. SpringApplication.run(ClientApplication .class, args);
  11. }
  12.  
  13. }

 调用服务类:

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.web.bind.annotation.PostMapping;
  3. import org.springframework.web.bind.annotation.RequestBody;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RequestMethod;
  6. import org.springframework.web.bind.annotation.ResponseBody;
  7. import org.springframework.web.bind.annotation.RestController;
  8.  
  9. @RestController
  10. @RequestMapping("/api/test/")
  11. public class TestRS {
  12.  
  13. @Autowired
  14. private TestService _testService;
  15.  
  16. @RequestMapping(value = "/say", method = RequestMethod.GET, produces = "application/json;charset=UTF-8")
  17. @ResponseBody
  18. public ResponseBase<String> test() {
    String test = _testService.sayHi();
  19. return new ResponseBase<String>("0", "success", "");
  20. }
  21.  
  22. }
  23.  
  24. @service
    public class TestService {
  1. @Autowired
  2. private HelloApi _helloApi;
  3.  
  4. public String sayHi() {
    String test = _helloApi.sayHi();
  5. return test;
  6. }
  7.  
  8. }

配置文件app.yml

  1. server:
  2. port: 1668
  3. contextPath: /hello
  4.  
  5. eureka:
  6. client:
  7. service-url:
  8. defaultZone: http://127.0.0.1:8761/eureka
  9. instance:
  10. prefer-ip-address: true
  11.  
  12. info:
  13. app.name: hello
  14.  
  15. feign:
  16. client:
  17. config:
  18. default:
  19. connectTimeout: 60000
  20. readTimeout: 60000

 启动服务,访问注册中心查看是否注册成功;调用接口测试;

Spring Eureka的使用入门--服务端与客户端的更多相关文章

  1. 【Eureka】服务端和客户端

    [Eureka]服务端和客户端 转载:https://www.cnblogs.com/yangchongxing/p/10778357.html Eureka服务端 1.添加依赖 <?xml v ...

  2. eureka服务端和客户端的简单搭建

    本篇博客简单记录一下,eureka 服务端和 客户端的简单搭建. 目标: 1.完成单机 eureka server 和 eureka client 的搭建. 2.完成eureka server 的添加 ...

  3. Spring Boot 集成 WebSocket 实现服务端推送消息到客户端

    假设有这样一个场景:服务端的资源经常在更新,客户端需要尽量及时地了解到这些更新发生后展示给用户,如果是 HTTP 1.1,通常会开启 ajax 请求询问服务端是否有更新,通过定时器反复轮询服务端响应的 ...

  4. seata服务端和客户端配置(使用nacos进行注册发现,使用mysql进行数据持久化),以及过程中可能会出现的问题与解决方案

    seata服务端和客户端配置(使用nacos进行注册发现,使用mysql进行数据持久化),以及过程中可能会出现的问题与解决方案 说明: 之所以只用nacos进行了注册与发现,因为seata使用naco ...

  5. 使用Apache CXF开发WebServices服务端、客户端

    在前一篇的博客中,我使用Xfire1.x来开发了WebServies的服务端. 但是如果你访问Apache的官网,可以看到xfire已经被合并了. 最新的框架叫做CXF. Apache CXF = C ...

  6. 采用MQTT协议实现android消息推送(2)MQTT服务端与客户端软件对比、android客户端示列表

    1.服务端软件对比 https://github.com/mqtt/mqtt.github.io/wiki/servers 名称(点名进官网) 特性 简介 收费 支持的客户端语言 IBM MQ 完整的 ...

  7. 【.NET+MQTT】.NET6 环境下实现MQTT通信,以及服务端、客户端的双边消息订阅与发布的代码演示

    前言: MQTT广泛应用于工业物联网.智能家居.各类智能制造或各类自动化场景等.MQTT是一个基于客户端-服务器的消息发布/订阅传输协议,在很多受限的环境下,比如说机器与机器通信.机器与物联网通信等. ...

  8. Java 断点下载(下载续传)服务端及客户端(Android)代码

    原文: Java 断点下载(下载续传)服务端及客户端(Android)代码 - Stars-One的杂货小窝 最近在研究断点下载(下载续传)的功能,此功能需要服务端和客户端进行对接编写,本篇也是记录一 ...

  9. asp.net获取服务端和客户端信息

    asp.net获取服务端和客户端信息 获取服务器名:Page.Server.ManchineName获取用户信息:Page.User 获取客户端电脑名:Page.Request.UserHostNam ...

随机推荐

  1. leetcode:Median of Two Sorted Arrays分析和实现

    这个问题的大意是提供两个有序的整数数组A与B,A与B并集的中间数.[1,3]与[2]的中间数为2,因为2能将A与B交集均分.而[1,3]与[2,4]的中间数为2.5,取2与3的平均值.故偶数数目的中间 ...

  2. vim 的小幅移动

    1.操作符命令和位移 x --->删除一个字符,4x ---->删除4个字符. dw --->可以删除一个单词,d4w ---->删除4个单词. d$  ----> 删除 ...

  3. WebFlux01 webflux概念、异步servlet、WebFlux意义

    1 概念 待更新...... 2 异步servlet 2.1 同步servlet servlet容器(如tomcat)里面,每处理一个请求会占用一个线程,同步servlet里面,业务代码处理多久,se ...

  4. Nginx+Tomcat集群+session共享

    Nginx+Tomcat集群+session共享 1)安装Nginx 2)配置多个Tomcat,在server.xml中修改端口(端口不出现冲突即可) 3)在nginx.conf文件中配置负载均衡池, ...

  5. PostgreSQL的索引选型

    PostgreSQL里面给全文检索或者模糊查询加索引提速的时候,一般会有两个选项,一个是GIST类型,一个是GIN类型,官网给出的参考如下: There are substantial perform ...

  6. Media Queries 媒体类型

    引用方法:1.<link rel="stylesheet" type="text/css" href="style.css" medi ...

  7. jquery延时刷新

    setTimeout(function(){ location.replace(location.href); },1000);

  8. Java 正则表达式的实际应用

    正则表达式最详细-----> | |目录 1匹配验证-验证Email是否正确 2在字符串中查询字符或者字符串 3常用正则表达式 4正则表达式语法 1匹配验证-验证Email是否正确 public ...

  9. java多线程的基本介绍

    Java多线程 1.进程与线程 进程是程序的一次动态执行过程,它需要经历从代码加载,代码执行到执行完毕的一个完整的过程,这个过程也是进程本身从产生,发展到最终消亡的过程.多进程操作系统能同时达运行多个 ...

  10. 「BZOJ 2733」「HNOI 2012」永无乡「启发式合并」

    题意 你需要维护若干连通快,有两个操作 合并\(x,y\)所在的连通块 询问\(x\)所在连通块中权值从小到大排第\(k\)的结点编号 题解 可以启发式合并\(splay\),感觉比较好些的 一个连通 ...