com.airepublic.microverse.standalone.server.StandaloneServiceServerBootstrap Maven / Gradle / Ivy
/**
Copyright 2015 Torsten Oltmanns, ai-republic GmbH, Germany
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.airepublic.microverse.standalone.server;
import org.jboss.weld.environment.se.Weld;
/**
* Bootstrap class to start a {@link StandaloneServiceServer} from the fat-jar via command-line. The
* command-line needs the following system-parameters set:
*
* -Dmicroverse.service.deploy.dir=<path to deployment directory>
* -Dmicroverse.autodeploy.start.delay=<delay after when to start the deployment in millis>
*
* -Dmicroverse.registry.heartbeat.interval=<intervall of heartbeat requests in millis>
* -Dmicroverse.server.port=<port>
* -Dmicroverse.server.useSSL=<flag whether to use SSL>
*
*
* @author Torsten Oltmanns
*
*/
public class StandaloneServiceServerBootstrap {
public static void main(final String[] args) {
StandaloneServiceServer bootServer = null;
try {
final Weld weld = new Weld();
bootServer = weld.initialize().select(StandaloneServiceServer.class).get();
final StandaloneServiceServer server = bootServer;
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
// to shutdown cleanly
server.shutDown();
}
});
} catch (final Exception e) {
// to shutdown cleanly
if (bootServer != null) {
bootServer.shutDown();
}
}
}
}