Hello again, does anyone have some experience with...
# server
m
Hello again, does anyone have some experience with KTor and building custom servers? I'm trying to create a grpc microservice, but have trouble with adding a module.
n
Ktor Server currently doesn't have GRPC support via a separate module.
g
For grpc Kotlin Microservices you might want to try Spring + Armeria. Armeria is a library from LINE: https://line.github.io/armeria/ Kotlin Sample: https://github.com/line/armeria/tree/master/examples/grpc-kotlin
m
@napperley I did find an example though, didnt manage to make it work yet
b
we are using javalin to expose the resources
p
Just use grpc-java, isn't that all you need ?
n
The grpc-java library isn't Ktor Server compatible.