Package org.hive.container.proxy

Examples of org.hive.container.proxy.ContainerProxy


        System.out.println("java -jar <container.jar> <jar location> <properties>");
    }

    private static void publishEndPoint(String appName) {
        Injector injector = InjectorSingleton.getInjector();
        ContainerProxy proxy = injector.getInstance(ContainerProxy.class);

        String hostName = properties.getProperty("host", "localhost");
        int port = Integer.parseInt(properties.getProperty("port", "8080"));

        String address = String.format("http://%s:%d/container", hostName, port);
View Full Code Here

TOP

Related Classes of org.hive.container.proxy.ContainerProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.