org.safehaus.jettyjam.https.HttpsAppJarLauncher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jettyjam-https Show documentation
Show all versions of jettyjam-https Show documentation
A simple https servlet that runs in an embedded jetty instance from an
executable jar file without requiring the webapp to be exploded.
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 );
}
}