简体   繁体   English

HttpClient 4.1.x的文档在哪里?

[英]Where is the documentation for HttpClient 4.1.x?

Where is the documentation for HttpClient 4.1.x ? HttpClient 4.1.x的文档在哪里?

I just want something like http://hc.apache.org/httpcomponents-client-4.4.x/index.html ( 4.4.x 's documentation) 我只是希望像http://hc.apache.org/httpcomponents-client-4.4.x/index.html4.4.x的文档)


My sad story 我悲伤的故事

I'm going to use HttpClient 4.1.x , and can't upgrade to 4.3.x or 4.4.x because the parent module (which calls my module) uses 4.1.x . 我将使用HttpClient 4.1.x ,并且无法升级到4.3.x4.4.x ,因为父模块(这就要求我的模块)使用4.1.x This is a typical problem in large companies. 这是大公司的典型问题。

First things first, I wanted to find the documentation for HttpClient 4.1.x , so I opened the home page of HttppClient : 首先,我想找到HttpClient 4.1.x的文档,所以我打开了HttppClient

http://hc.apache.org/ http://hc.apache.org/

http://hc.apache.org/

But in the navigation I can only find documentation for 4.3 and 4.4 . 但在导航中我只能找到4.34.4文档。 I looked for something like Older Versions or Version List , but I couldn't find anything. 我寻找类似Older VersionsVersion List东西,但我找不到任何东西。

Then I tried searching (Google) and found the 4.2.x homepage. 然后我尝试搜索(Google)并找到4.2.x主页。 I hoped this might link to 4.1.x documentation, but no luck. 我希望这可能链接到4.1.x文档,但没有运气。

http://hc.apache.org/httpcomponents-client-4.2.x/index.html http://hc.apache.org/httpcomponents-client-4.2.x/index.html

http://hc.apache.org/httpcomponents-client-4.2.x/index.html

I'm good at learning patterns, so I guess 4.1.x 's homepage is: 我擅长学习模式,所以我猜4.1.x的主页是:

http://hc.apache.org/httpcomponents-client-4.1.x/index.html http://hc.apache.org/httpcomponents-client-4.1.x/index.html

But, again, disappointment: 但是,再一次,失望:

http://hc.apache.org/httpcomponents-client-4.1.x/index.html

Fortunately, the Wayback Machine can get you the archived site: https://web.archive.org/web/20120103180744/http://hc.apache.org/httpcomponents-client-ga/index.html 幸运的是,Wayback Machine可以为您提供存档的网站: https//web.archive.org/web/20120103180744/http//hc.apache.org/httpcomponents-client-ga/index.html

The (pretty clumsy) alternative would be to build it yourself: (非常笨拙)替代方案是自己构建它:

  1. Check out HttpClient: svn co http://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.1.3 httpclient 查看HttpClient: svn co http://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.1.3 httpclient
  2. Build HttpClient's site, skipping subprojects: mvn -pl . site 构建HttpClient的站点,跳过子项目: mvn -pl . site mvn -pl . site (the subprojects contain missing dependencies) mvn -pl . site (子项目包含缺少的依赖项)
  3. The build will still fail, but it will get far enough to generate HTML and PDF documentation in target/site , including a big tutorial PDF. 构建仍然会失败,但它将足以在target/site生成HTML和PDF文档,包括一个大的教程PDF。

That worked for me, although it's a pretty clumsy process. 这对我有用,虽然这是一个非常笨拙的过程。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 释放HttpClient 4.1.x的连接以与一个HttpClient实例顺序执行 - Releasing connection of HttpClient 4.1.x for sequential execution with one HttpClient instance 自签名证书的HttpClient 4.1.x错误(javax.net.ssl.SSLPeerUnverifiedException:对等未认证) - HttpClient 4.1.x error for self signed certificate (javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated ) Netty 4.1.x直接内存监视 - Netty 4.1.x direct memory monitoring 将Apache httpcomponents从4.1.x升级到4.3.x - Upgrade Apache httpcomponents from 4.1.x to 4.3.x 使用 MySQL 4.1.x + Connector/J 流式传输大型结果集 - Streaming large result sets with MySQL 4.1.x + Connector/J 什么可以使Android 4.1.X中的加载速度慢而不是4.2? - What could make the loading slow in android 4.1.X and not on 4.2? Json不接受Spring MVC 4.1.x RestFul服务抛出 - Spring MVC 4.1.x RestFul Service throwing Not Acceptable for Json 从Spring 4.0.x迁移到4.1.x以来的肮脏测试上下文 - Dirty test context since migrating from spring 4.0.x to 4.1.x Spring Batch 3.0.2与Spring Core 4.1.x的集成 - 使用@EnableBatchProcessing的适当方法是什么? - Spring Batch 3.0.2 integration with Spring Core 4.1.x - What is the appropriate way to use @EnableBatchProcessing? 不能在Spring-Integration 4.1.x中将String值转换为ExpressionEvaluatingRequestHandlerAdvice的Expression - Cannot convert String value to Expression for ExpressionEvaluatingRequestHandlerAdvice in spring-integration 4.1.x
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM