美文网首页互联网科技程序员Java 杂谈
Java学习笔记—总所周知的微服务架构SpringCloud中F

Java学习笔记—总所周知的微服务架构SpringCloud中F

作者: 程序员北游 | 来源:发表于2019-01-11 17:35 被阅读8次

    Feign简介

    Feign 是一个声明web服务客户端,这便得编写web服务客户端更容易,使用Feign 创建一个接口并对它进行注解,它具有可插拔的注解支持包括Feign注解与JAX-RS注解,Feign还支持可插拔的编码器与解码器,Spring Cloud 增加了对 Spring MVC的注解,Spring Web 默认使用了HttpMessageConverters, Spring Cloud 集成 Ribbon 和 Eureka 提供的负载均衡的HTTP客户端 Feign.

    声明式REST客户端:Feign

    先要启动eureka_register_service工程(注册中心)和biz-service-0工程(服务生产者)

    创建一个maven工程eureka_feign_client

    pom.xml

    org.springframework.boot

    spring-boot-starter-parent

    1.4.3.RELEASE

    UTF-8

    1.8

    org.springframework.cloud

    spring-cloud-starter-feign

    org.springframework.cloud

    spring-cloud-starter-eureka

    org.springframework.boot

    spring-boot-starter-web

    org.springframework.boot

    spring-boot-starter-test

    test

    org.springframework.cloud

    spring-cloud-dependencies

    Brixton.SR5

    pom

    import

    在应用主类中通过@EnableFeignClients注解开启Feign功能

    启动文件FeignApplication.java

    @SpringBootApplication

    @EnableDiscoveryClient

    @EnableFeignClients

    public class FeignApplication {

    public static void main(String[] args) {

    SpringApplication.run(FeignApplication.class, args);

    }

    }

    定义服务接口类UserClient.java

    使用@FeignClient("biz-service-0")注解来绑定该接口对应biz-service-0服务

    @FeignClient("biz-service-0")

    public interface UserClient {

    @RequestMapping(method = RequestMethod.GET, value = "/getuser")

    public User getuserinfo();

    @RequestMapping(method = RequestMethod.GET, value = "/getuser")

    public String getuserinfostr();

    @RequestMapping(method = RequestMethod.GET, value = "/info")

    public String info();

    }

    在web层中调用上面定义的UserController,具体如下

    @RestController

    public class UserController {

    @Autowired

    UserClient userClient;

    @RequestMapping(value = "/getuserinfo", method = RequestMethod.GET)

    public User getuserinfo() {

    return userClient.getuserinfo();

    }

    @RequestMapping(value = "/getuserinfostr", method = RequestMethod.GET)

    public String getuserinfostr() {

    return userClient.getuserinfostr();

    }

    @RequestMapping(value = "/info", method = RequestMethod.GET)

    public String info() {

    return userClient.info();

    }

    }

    application.properties配置变量

    spring.application.name=feign-consumer

    server.port=8004

    eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

    访问 http://127.0.0.1:8004/getuserinfo

    总结:

    其实通过Feign封装了HTTP调用服务方法,使得客户端像调用本地方法那样直接调用方法,类似Dubbo中暴露远程服务的方式,区别在于Dubbo是基于私有二进制协议,而Feign本质上还是个HTTP客户端

    可能遇到的问题

    启动抛出: Attribute 'value' in annotation [org.springframework.cloud.netflix.feign.FeignClient] must be declared as an @AliasFor [serviceId], not [name].

    解决:把spring-cloud-dependencies version升级到Brixton.SR5(netflix-core版本升到1.1.1就好了)

    最后

    结合当前互联网公司的技术需求及主流技术,我整理了一套系统的架构技术体系。不少公司很重视高并发高可用的技术,特别是一线互联网公司,分布式、JVM、spring源码分析、微服务等知识点已经是面试的必考题。这些东西可能你们平时在工作中接触过,但是缺少全面系统的学习,希望对正在面试的朋友或是遭遇技术瓶颈的程序员们提供一点思路。

    1、开源框架解析专题:站在巨人肩膀,收获不一样的视野。

    开源框架

    2、架构筑基专题:深入内核、直击故障、拒绝懵圈。

    架构筑基

    3、微服务架构专题:你还不知道微服务,怎么涨薪。

    微服务架构

    4、高性能架构专题:成为互联网架构师,你要的都在这里。

    高性能架构

    5、团队协作开发专题:让你团队开发效率提高十倍。

    团队协作开发

    6、B2C商城项目实战:撸起袖子干实事,项目经验那点事。

    B2C商城实战

    7、并发编程

    并发编程

    8、设计模式

    设计模式

    以上视频资料是我结合自己和身边朋友的面试经历而整理的,希望对面试的朋友或者在找工作的程序员们有所帮助。大家对技术感兴趣的朋友也可以来Java资源分享群:(878249276),资料会不定期更新,群里有阿里大牛,也有一线互联网的资深HR。

    相关文章

      网友评论

        本文标题:Java学习笔记—总所周知的微服务架构SpringCloud中F

        本文链接:https://www.haomeiwen.com/subject/cozxdqtx.html