App.java 641 Bytes
Newer Older
Luca Arrotta's avatar
Luca Arrotta committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
package grpchelloserver;

import io.grpc.Server;
import io.grpc.ServerBuilder;

import java.io.IOException;


public class App
{
    public static void main( String[] args )
    {
        //faccio partire il servizio sulla porta 8080
        try {

            Server server = ServerBuilder.forPort(8080).addService(new GreetingServiceImpl()).build();

            server.start();

            System.out.println("Server started!");

            server.awaitTermination();

        } catch (IOException e) {

            e.printStackTrace();

        } catch (InterruptedException e) {

            e.printStackTrace();

        }


    }
}