gdrouet
06/26/2017, 9:18 AMmethod(POST)
and contentType(APPLICATION_JSON)
without an additional call to nest
@Bean
open fun apiRouter() = router {
"/".nest {
method(OPTIONS, {
ALLOW_CROSS_ORIGIN_RESPONSE
})
method(POST).nest {
contentType(APPLICATION_JSON) {
req -> ::myHandler
}
}
}
}