Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FessBoot (0.03 sec)

  1. src/main/java/org/codelibs/fess/FessBoot.java

        private static final String TOMCAT_CONFIG_PATH = "tomcat.config.path";
    
        /**
         * Constructs a new FessBoot instance with the specified port and context path.
         *
         * @param port the port number for the Tomcat server
         * @param contextPath the context path for the web application
         */
        public FessBoot(final int port, final String contextPath) {
            super(port, contextPath);
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. ADDING_NEW_LANGUAGE.md

    ### 5. Rebuild the Project
    
    ```bash
    mvn clean package
    ```
    
    ### 6. Test the New Language
    
    1. **Start Fess:**
       ```bash
       # Run the main class in your IDE
       org.codelibs.fess.FessBoot
       ```
    
    2. **Access the Admin UI:**
       ```
       http://localhost:8080/admin/
       ```
    
    3. **Test language selection:**
       - Check if your language appears in the language dropdown
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
Back to top