Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for Hc4HttpClient (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

     *
     * @see HcHttpClient
     */
    public class Hc4HttpClient extends HcHttpClient {
    
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(Hc4HttpClient.class);
    
        /**
         * Constructs a new Hc4HttpClient.
         */
        public Hc4HttpClient() {
            // Default constructor
        }
    
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  2. 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)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/SwitchableHttpClient.java

     * The client implementation is selected based on the system property {@code fess.crawler.http.client}.
     *
     * <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
    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)
  4. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		<property name="soTimeout">30000</property>
    	</component>
    
    	<!-- HC4 (Alternative - for backward compatibility) -->
    	<component name="internalHc4HttpClient" class="org.codelibs.fess.crawler.client.http.Hc4HttpClient"
    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    	</component>
    	<component name="httpClient"
    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)
Back to Top