Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for FessBoot (0.25 sec)

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

    import org.codelibs.fess.tomcat.webresources.FessWebResourceRoot;
    import org.dbflute.tomcat.TomcatBoot;
    import org.dbflute.tomcat.logging.BootLogger;
    import org.dbflute.tomcat.props.BootPropsTranslator;
    
    public class FessBoot extends TomcatBoot {
    
        private static final String LOGGING_PROPERTIES = "logging.properties";
    
        private static final String FESS_CONTEXT_PATH = "fess.context.path";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess.bat

    CALL "%~dp0fess.in.bat"
    IF ERRORLEVEL 1 (
    	IF NOT DEFINED nopauseonerror (
    		PAUSE
    	)
    	EXIT /B %ERRORLEVEL%
    )
    
    "%JAVA_HOME%\bin\java" %FESS_JAVA_OPTS% !newparams! -cp "%FESS_CLASSPATH%" "org.codelibs.fess.FessBoot"
    
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun May 24 22:24:52 GMT 2020
    - 796 bytes
    - Viewed (0)
  3. src/main/assemblies/files/fess

                    org.codelibs.fess.FessBoot $FESS_OPTS > /dev/null
        else
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS <&- > /dev/null &
            if [ x"$pidfile" != "x" ] ; then
                echo $! > $pidfile
            fi
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/main/assemblies/files/service.bat

    	)
    )
    
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
  5. src/packaging/rpm/init.d/fess

    fi
    
    #
    # Source function library.
    #
    if [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
    fi
    
    # Sets the default values for fess variables used in this script
    PROC_NAME=org.codelibs.fess.FessBoot
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_HOME="${packaging.fess.home.dir}"
    PID_DIR="${packaging.fess.pid.dir}"
    
    # Source the default env file
    FESS_ENV_FILE="${packaging.env.file}"
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  6. src/main/assemblies/common-bin.xml

    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    		</fileSet>
    		<fileSet>
    			<directory>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/</directory>
    			<includes>
    				<include>FessBoot**</include>
    				<include>tomcat/**</include>
    			</includes>
    			<outputDirectory>fess-${project.version}/lib/classes/org/codelibs/fess</outputDirectory>
    		</fileSet>
    		<fileSet>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 17 02:29:43 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  7. README.md

    ### Setup for OpenSearch Plugins
    
    Run antrun:run to download plugins into the plugins directory:
    
        $ mvn antrun:run
    
    ### Run Fess
    
    Run or debug org.codelibs.fess.FessBoot on your IDE, and then access http://localhost:8080/
    
    ### Build Package
    
    Run the `package` goal and then the release file will be created in target/releases.
    
        $ mvn package
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Feb 25 00:40:07 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  8. README.fr.md

    ### Mettre en place les plugins OpenSearch
    
    Exécuter antrun:run pour récupérer les plugins dans le répertoire des plugins :
    
        $ mvn antrun:run
    
    ### Éxecuter Fess
    
    Exécuter ou debugger org.codelibs.fess.FessBoot dans votre IDE, et aller sur http://localhost:8080/
    
    ### Construire le Package
    
    Éxecuter le `package` et ensuite livrer le fichier créé dans target/releases.
    
        $ mvn package
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  9. pom.xml

    							</mapper>
    						</data>
    						<data>
    							<type>files</type>
    							<paths>
    								<path>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/FessBoot.class</path>
    								<path>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/FessBoot$FessBootPropsTranslator.class</path>
    							</paths>
    							<dst>${packaging.fess.lib.dir}/classes/org/codelibs/fess/</dst>
    							<mapper>
    								<type>perm</type>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top