org.springframework.bo...">
美文网首页
openFeign远程调用

openFeign远程调用

作者: zzz_0427 | 来源:发表于2020-05-13 13:59 被阅读0次

    "1.引入POM依赖

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-web</artifactId>

    </dependency>

    <dependency>

        <groupId>org.springframework.cloud</groupId>

        <artifactId>spring-cloud-starter-openfeign</artifactId>

    </dependency>

    2.在消费端声明被调用端,构建被调用端feign接口

     在接口使用@FeignClient("xxx")   xxx为nacos被调用服务名

    接口方法为被调用者方法,调用接口路径为完整URL路径

    3在消费端启动类加注解@EnableFeignClients(basePackages ="xxx")

       扫描包名为声明调用远程接口包名

    相关文章

      网友评论

          本文标题:openFeign远程调用

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