对hutool-http的支持
TLog从1.3.5开始,对hutool框架中的http模块进行了支持。现在你使用hutool-http模块也可以很方便的传递标签信息。
提示
需要注意的是,hutool从5.7.16
才支持interceptor
的设置,所以要使用此功能,请确保你的hutool在5.7.16+
你需要在hutool的http调用中进行设置interceptor
//最好把这个TLogHutoolhttpInterceptor设成实例属性,不要每次去new
TLogHutoolhttpInterceptor tLogHutoolhttpInterceptor = new TLogHutoolhttpInterceptor();
String result2 = HttpRequest.post(url)
.header(Header.USER_AGENT, "Hutool http")//头信息,多个头信息多次调用此方法即可
.addInterceptor(tLogHutoolhttpInterceptor)
.form(paramMap)//表单内容
.timeout(20000)//超时,毫秒
.execute().body();
帮助我们改善文档 (opens new window)
last update: 2022/09/21, 16:00:22