Slide 53
Slide 53 text
fun Application.module() {
install(ContentNegotiation) {
jackson {
enable(SerializationFeature.INDENT_OUTPUT)
}
}
routing {
get("/stock") {
call.respond(warehouse.stock.map { (k, v) StockDto(k, v) })
}
[
{ "name" : "Beef","quantity" : 100 },
{ "name" : "Lamb","quantity" : 50 },
{ "name" : "Fish","quantity" : 0 }
]
Warehouse