All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.safehaus.jettyjam.https.HttpsAppJarLauncher Maven / Gradle / Ivy

Go to download

A simple https servlet that runs in an embedded jetty instance from an executable jar file without requiring the webapp to be exploded.

There is a newer version: 2.1.5
Show newest version
package org.safehaus.jettyjam.https;


import org.safehaus.jettyjam.utils.JarJarClassLoader;


/**
 * Launches the main() of the HttpsAppJettyRunner.
 */
public class HttpsAppJarLauncher {

    public static void main( String[] args ) throws Throwable {
        JarJarClassLoader cl = new JarJarClassLoader();
        cl.invokeMain( "org.safehaus.jettyjam.https.HttpsAppJettyRunner", args );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy