Thanks for the explanation, I remeb r now from long time ago. It's like nesting routes in ktor. Nice to have.
But I never liked the big architecture of application servers relying on such paths for distinct applications. It's usually better to use micro services and a dedicated router, isn't it?
s
s4nchez
10/19/2017, 8:47 PM
It depends on your approach to microservices. If a single service provide multiple endpoints (e.g
/v1/x
,
/v1/y
,
/v2/x
) I'd probably prefer managing those on the app itself rather than using a router.