springboot自定义starter,封装okhttp,方便在springboot项目中使用okhttp发送各种http请求 目前1.0版本暂时只简单封装了同步请求
软件架构说明 springboot+okhttp
- clone本工程到本地计算机
- 切换到工程根目录,执行mvn打包命令: mvn clean install,将该starter安装到本地的maven库
- 自己的springboot工程通过引入该starter,使用该starter中定义的GetTemplate,PostTemplate,PutTemplate,DeleteTemplate
具体使用详情如下:
<dependency> <groupId>io.github.yujunchengg</groupId> <artifactId>okhttps-springboot-starter</artifactId> <version>1.0</version> </dependency>
- 可以在springboot工程中的application.yml文件中添加okhttps组件的一些配置参数,主要用于对建立的Http连接做一些参数调整
starter: okhttps: connectTimeout: 10s #连接超时时间 read-timeout: 500ms #数据读取超时时间 writeTimeout: 500ms #写数据超时时间 max-idle: 100 #最大空闲连接 base-url: http://127.0.0.1:8200 #请求url前缀 pool: max-idle-connections: 10 #最大空闲连接数 keep-alive-duration: 5 #连接保活时间 time-unit: minutes #连接保活时间的单位
- Fork 本仓库
- 新建 Feat_xxx 分支
- 提交代码
- 新建 Pull Request
- 使用 Readme_XXX.md 来支持不同的语言,例如 Readme_en.md, Readme_zh.md
- 码云官方博客 blog.gitee.com
- 你可以 https://gitee.com/explore 这个地址来了解码云上的优秀开源项目
- GVP 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
- 码云官方提供的使用手册 https://gitee.com/help
- 码云封面人物是一档用来展示码云会员风采的栏目 https://gitee.com/gitee-stars/