Hi gRPC community,
I'm looking into making a the swap from gRPC for the client I work for - the app in question is quite monolithic and we are looking to decouple it, starting off with the service layer. The client asked that I look into gRPC, and while it looks like it would fit quite well with the client, I cannot seem to find any other way but to use the Netty library to actually host the gRPC services - is this a correct understadning?
The application has some core business logic hosted on an IBM WebSphere Application Server that the gRPC services would need to serve in their implementation.
If I were to use REST, i could use JAX-RS and deploy the the endpoints as a webmodule on the existing Application Server - does gRPC offer a similar way of hosting the services, or is my only option to create a Netty server, serving the services next to the Application server using the gRPC Netty server builder?