bug:JDK11早先版本中,如果自定义Http Header会抛异常,并且请求失败。
cheng521521 opened this issue · 2 comments
cheng521521 commented
Issue description
Environment
- JustAuth version(e.g.
1.16.5
):
stackoverflow的链接
https://stackoverflow.com/questions/52315472/how-to-customise-host-header-in-java-http-client
解决方法是夹JDK启动参数,但是我觉得这种方式不优雅。不知道有什么好的解决方案吗。
chanson-chan commented
在项目启动时可以通过 HttpUtil.setHttp()
方法指定具体的 Http 实现类 (需要导入对应的库) 而避免使用 JDK 自带的 HttpClient
HttpUtil.setHttp(new HutoolImpl());
// 或 HttpUtil.setHttp(new OkHttp3Impl());
cheng521521 commented
好的,非常感谢。:)