springboot项目调用另一个项目接口

由于业务问题,有时候需要从其他项目调用接口

springboot本身封装了两种方法HTTP调用方式:
1.feign的远程调用(http接口调用)
2.RestTemplate

试了大概小一天的时间,很多问题,果断放弃了,下边介绍一个   okhttp

用法也相对简单,

第一步,在 pom里添加依赖


            com.squareup.okhttp3
            okhttp
            3.9.1
        

具体版本自己去选择

第二步注入

@Autowired
    OkHttpClient okHttpClient;

第三步调用:

Request req = new Request.Builder()
                .url(searchUrl)
                .method("POST", FormBody.create(MediaType.parse("application/json"), body))
                .header("token", "取自己项目的!!!!")
                .build();

        String resBody = okHttpClient.newCall(req).execute().body().string();

 

你可能感兴趣的:(springboot项目调用另一个项目接口)