zoukankan      html  css  js  c++  java
  • spring boot 访问外部http请求

    以前 访问外部请求都要经过 要用 httpClient  需要专门写一个方法  来发送http请求   这个这里就不说了 网上一搜全都是现成的方法

    springboot 实现外部http请求 是通过FeignClient来请求http数据的  特别简单实用的一个注解

    1.  首先我们要在对应的maven项目中加上依赖  

      

      <dependency>
          <groupId>org.springframework.cloud</groupId>
          <artifactId>spring-cloud-starter-feign</artifactId>
          <version>1.2.2.RELEASE</version>
      </dependency>

    2.  我们要写一个接口   放到service层  

      

    @FeignClient(url = "${decisionEngine.url}",name="engine")
    public interface DecisionEngineService {
      @RequestMapping(value="/decision/person",method= RequestMethod.POST)
      public JSONObject getEngineMesasge(@RequestParam("uid") String uid,@RequestParam("productCode") String productCode);

    }

    这里的decisionEngine.url 是配置在properties中的    是ip地址和端口号

               decisionEngine.url=http://10.2.1.148:3333

               /decision/person  是接口名字     

    3.  我们要在启动的java类上 加 @EnableFeignClients

     

  • 相关阅读:
    hybrid项目h5页路由回退问题解决
    各个端类型判断
    图片展示方法总结
    微信小程序简易table组件实现
    微信小程序动画技巧
    git常用命令
    小程序跳转
    excel日期插件
    excel省市区三级分类级联
    mysql字符串分割操作
  • 原文地址:https://www.cnblogs.com/studyitskill/p/9133379.html
Copyright © 2011-2022 走看看