spring boot 访问外部http请求

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

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

 

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

  

  
      org.springframework.cloud
      spring-cloud-starter-feign
      1.2.2.RELEASE
  

 

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

 spring boot 访问外部http请求_第1张图片

 大家有兴趣可以加我一起探讨技术,微信:3885115

你可能感兴趣的:(springboot,http)