Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Hc5HttpClient (0.2 seconds)

  1. 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)
  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)
Back to Top