HttpClient 4.1.x
的文档在哪里?
我只想要http://hc.apache.org/httpcomponents-client-4.4.x/index.html(4.4.x
的文档)
我将使用HttpClient 4.1.x
,无法升级到4.3.x
或4.4.x
,因为父模块(调用我的模块)使用4.1.x
。这是大公司的典型问题。
首先,我想查找HttpClient 4.1.x
的文档,因此我打开了HttppClient
的主页:
但在导航中,我只能找到4.3
和4.4
的文档。我找了类似Older Versions
或Version List
的内容,但找不到任何内容。
然后我尝试搜索(Google)并找到4.2.x
主页。我希望这可能链接到4.1.x
文档,但没有运气。
http://hc.apache.org/httpcomponents-client-4.2.x/index.html
我擅长学习模式,所以我猜4.1.x
的主页是:
http://hc.apache.org/httpcomponents-client-4.1.x/index.html
但是,再一次,失望:
答案 0 :(得分:6)
幸运的是,Wayback Machine可以为您提供存档的网站: https://web.archive.org/web/20120103180744/http://hc.apache.org/httpcomponents-client-ga/index.html
(非常笨拙)替代方案是自己构建它:
svn co http://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.1.3 httpclient
mvn -pl . site
(子项目包含缺少的依赖项)target/site
中生成HTML和PDF文档,包括一个大型教程PDF。这对我有用,虽然这是一个相当笨拙的过程。