Oh, I should point out another ktor lib I wrote re...
# ktor
m
Oh, I should point out another ktor lib I wrote recently. If you have an existing JAX-RS-based app (whether it's just a plain Jersey thing, or Dropwizard, or anything else like that), you can use https://bitbucket.org/marshallpierce/jersey-container-ktor/src/master/ to host your JAX-RS resources inside ktor. This means you're only running 1 server, on 1 port, and you can migrate endpoints from JAX-RS to Ktor one at a time. This is also used in production and serving real traffic.
b
I'll likely be in this exact position, will have to check this out. Thanks!