2022-01-25 16:34:22 +08:00

776 B
Raw Permalink Blame History

network-spring-boot-starter

简介

本模块对HttpClient进行了封装实现了GET、POST、PUT、DELETE等Http请求的同步和异步方法

引入


<dependency>
    <groupId>com.hxuanyu</groupId>
    <artifactId>network-spring-boot-starter</artifactId>
    <version>1</version>
</dependency>

使用

  • 引入HttpService对象
@Resource
HttpService httpService;
  • 调用相关方法
Msg<String> msg = httpService.doGet("https://baidu.com");
if (msg.isSuccess()) {
    logger.info(msg.toString());
}
  • 本模块依赖了common-spring-boot-starter模块引入本模块后会自动引入common模块下的相关类同时HttpService的方法返回值使用了common模块下的Msg统一封装