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

org.swisspush.reststorage.RestStorageRunner Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.swisspush.reststorage;

import io.vertx.core.Vertx;
import io.vertx.core.logging.LoggerFactory;

/**
 * Created by florian kammermann on 23.05.2016.
 *
 * Deploys the rest-storage to vert.x.
 * Used in the standalone scenario.
 */
public class RestStorageRunner {

    public static void main(String[] args) {
        Vertx.vertx().deployVerticle("org.swisspush.reststorage.RestStorageMod", event -> {
            LoggerFactory.getLogger(RestStorageMod.class).info("rest-storage started");
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy