如何处理 Finatra 中的放置请求?
How to handle put requests in Finatra?
我有一个具有放置端点的服务。我希望能够访问 url 参数以及正文。
我该如何实现。
这是我的终点:
put("/:customerNum") { foo: Foo =>
val custNum = ???
}
如何访问 customerNum?
put( / string) { (customerNumber: String) =>
s"$customerNumber!"
}
在这里你可以提取与request相关的东西:
put("/:customerNum") { request =>
// Get request body
val body = request.getContentString
// Get content type
val contentType = request.contentType
// Get customer number
val customerNum = request.routeParams.get("customerNum")
println(s"Customer number: ${customerNum}. Content Type: $contentType. Body: $body")
render.plain("ok").toFuture
}
我有一个具有放置端点的服务。我希望能够访问 url 参数以及正文。 我该如何实现。
这是我的终点:
put("/:customerNum") { foo: Foo =>
val custNum = ???
}
如何访问 customerNum?
put( / string) { (customerNumber: String) =>
s"$customerNumber!"
}
在这里你可以提取与request相关的东西:
put("/:customerNum") { request =>
// Get request body
val body = request.getContentString
// Get content type
val contentType = request.contentType
// Get customer number
val customerNum = request.routeParams.get("customerNum")
println(s"Customer number: ${customerNum}. Content Type: $contentType. Body: $body")
render.plain("ok").toFuture
}