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

jodd.joy.server.Server Maven / Gradle / Ivy

The newest version!
package jodd.joy.server;

import jodd.joy.server.jetty.JettyServer;

public class Server extends BaseServer {

	public static Server create() {
		return new Server();
	}

	JettyServer jettyServer;

	@Override
	public void start() {
		jettyServer = new JettyServer(this);
		try {
			jettyServer.start();
		} catch (Exception ex) {
			throw new ServerException("Error starting Jetty", ex);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy