- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for Hc5HttpClient (0.76 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
* * @see HcHttpClient */ public class Hc5HttpClient extends HcHttpClient { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(Hc5HttpClient.class); /** * Constructs a new Hc5HttpClient. */ public Hc5HttpClient() { // Default constructor }Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
CLAUDE.md
### HTTP Client Architecture ``` SwitchableHttpClient (extends FaultTolerantClient) ├── Hc5HttpClient (default) - Apache HttpComponents 5.x └── Hc4HttpClient (fallback) - Apache HttpComponents 4.x HcHttpClient (abstract base class) ├── Hc4HttpClient └── Hc5HttpClient ``` Switch via system property: `-Dfess.crawler.http.client=hc4` or `hc5` (default)Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Mar 12 03:39:20 GMT 2026 - 8.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/SwitchableHttpClient.java
* * <p>Supported values:</p> * <ul> * <li>{@code hc4} - Use Apache HttpComponents 4.x ({@link Hc4HttpClient})</li> * <li>{@code hc5} or not set - Use Apache HttpComponents 5.x ({@link Hc5HttpClient}) - default</li> * </ul> * * <p>This class extends {@link FaultTolerantClient} to provide automatic retry functionality * with the selected HTTP client implementation.</p> * * <p>Usage example:</p> * <pre>
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 04:17:06 GMT 2026 - 4.9K bytes - Click Count (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<include path="crawler/contentlength.xml" /> <include path="crawler/mimetype.xml" /> <!-- HC5 (Default) --> <component name="internalHttpClient" class="org.codelibs.fess.crawler.client.http.Hc5HttpClient" instance="prototype"> <property name="connectionTimeout">15000</property> <property name="soTimeout">30000</property> </component> <!-- HC4 (Alternative - for backward compatibility) -->
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 04:17:06 GMT 2026 - 3.7K bytes - Click Count (0)