Reputation: 93
Grpc Server seems to be implemented using netty. Is there a way to use other implementations ?
Upvotes: 0
Views: 822
Reputation: 26394
Netty is the only supported server. You can either have two separate ports (one for your other server, one for gRPC) or could reverse proxy from your other server to the Netty server.
There is work underway (tracking issue) to allow serving using the Servlet API, so then any Servlet Container could be used. But there are restrictions, like the needing to be the root ('/') webapp. It is far enough along to test it and provide feedback, but there also may be some gaps in the implementation.
Upvotes: 4