博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java B2B2C Springboot仿淘宝电子商城系统-负载均衡之ribbon+feign
阅读量:6715 次
发布时间:2019-06-25

本文共 3679 字,大约阅读时间需要 12 分钟。

一、 feign简介

Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。

需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码 一零三八七七四六二六

简而言之:

Feign 采用的是基于接口的注解

Feign 整合了ribbon

二、创建一个feign的服务

1)新建一个Springboot项目service-feign,它的pom.xml文件如下

4.0.0
com.example
service-feign
0.0.1-SNAPSHOT
jar
service-feign
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.4.0.RELEASE
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-feign
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
复制代码

2)配置application.yml

eureka:  client:    serviceUrl:      defaultZone: http://localhost:8761/eureka/server:  port: 8765spring:  application:    name: service-feign复制代码

3)feign-service的启动类,在启动类上添加@EnableDiscoveryClient @EnableFeignClients

注解,表示用注解开启feign功能。如果标注了@FeignClient的接口和启动类不在一个包下,应该在@EnableFeignClient()中添加所在包

package com.example.demo; import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.client.discovery.EnableDiscoveryClient;import org.springframework.cloud.netflix.feign.EnableFeignClients;@EnableFeignClients@EnableDiscoveryClient@SpringBootApplicationpublic class ServiceFeignApplication { 	public static void main(String[] args) {		SpringApplication.run(ServiceFeignApplication.class, args);	}}复制代码

4)定义一个feign接口,通过@FeignClient(“服务名”),来指定调用哪个服务。比如在代码中调用了hello-service服务的“/hello”接口,代码如下,在启动该项目时,@EnableFeignClients注解就会让Feign在指定包下扫描所有标注了@FeignClient的接口

package com.liantong.service; import org.springframework.cloud.netflix.feign.FeignClient;import org.springframework.web.bind.annotation.RequestMapping;@FeignClient("service-helloworld") //向注册中心申请使用service-helloworld客户端public interface HelloService {	@RequestMapping("/hello") //表明使用service-helloworld中的“/hello方法”	String sayHelloFromClient();}复制代码

5)controller层

package com.liantong.controller; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody; import com.liantong.service.HelloService; @Controllerpublic class HelloController {	@Autowired	private HelloService hs;	@RequestMapping("/hello")	@ResponseBody	public String hello() {		return hs.sayHelloFromClient();	}}复制代码

6)依次启动eureka-server,两个service-helloworld,再启动本项目,完成!

转载于:https://juejin.im/post/5c2ebe64f265da61602d0ff9

你可能感兴趣的文章
21_css布局2_浮动布局.html
查看>>
DateUtils 单元下的公用函数目录
查看>>
jQuery 练习[二]: 获取对象(1) - 基本选择与层级
查看>>
Sublime Text 2 快捷键用法大全
查看>>
linux非交互式生成秘钥
查看>>
C练习小代码-20151108
查看>>
以太坊RPC接口使用
查看>>
高并发写入mysql的设计
查看>>
用U盘安装debian系统
查看>>
Mac 下得Jmeter 测试
查看>>
SequoiaDB 笔记
查看>>
lduan HyPer-V 网络存储(三)
查看>>
SSH 命令行参数详解【英】
查看>>
前端技术学习之选择器(四)
查看>>
2016年4月4日中项作业
查看>>
log4j配置
查看>>
centos备份与还原
查看>>
fixed 兼容ie6
查看>>
条件+努力=?
查看>>
hadoop常用服务管理命令
查看>>