如何使用 Scalatra 做出默认响应 Content-type: application/json
How do I make the default response Content-type: application/json with Scalatra
我正在学习 Scalatra,我想知道如何使我的回复 Content-Type 成为默认值 application/json
。当前默认值似乎是 text/html
。整洁,但对我的应用程序不是很有用。
当前默认值为 text/html
。
$ curl -i -X GET 'http://localhost:8080/v1/example'
HTTP/1.1 200 OK
Date: Fri, 19 Apr 2019 07:21:21 GMT
Content-Type: text/html;charset=utf-8
Content-Length: 23
Server: Jetty(9.4.8.v20171121)
HelloWorld(hello,world)
我可以通过 Accepted: application/json
header.
明确地得到 application-json
$ curl -i -X GET 'http://localhost:8080/v1/example' -H 'Accept: application/json'
HTTP/1.1 200 OK
Date: Fri, 19 Apr 2019 07:22:09 GMT
Content-Type: application/json;charset=utf-8
Transfer-Encoding: chunked
Server: Jetty(9.4.8.v20171121)
{"hello":"hello","world":"world"}
如何将默认值设置为 application/json
。
defaultFormat
可以被覆盖以使 application/json
成为默认情况。例如,
import java.io.File
import org.scalatra._
import org.scalatra.util.MimeTypes
import org.json4s.{DefaultFormats, Formats}
import org.scalatra.json._
case class HelloWorld(hello: String, world: String)
class MyScalatraServlet extends ScalatraServlet with JacksonJsonSupport {
protected implicit lazy val jsonFormats: Formats = DefaultFormats
override def defaultFormat: Symbol = 'json
get("/v1/example") {
HelloWorld("hello", "world")
}
}
未指定 Accept
header 应响应
curl -i -X GET 'http://localhost:8080/v1/example'
HTTP/1.1 200 OK
Date: Thu, 25 Apr 2019 22:28:37 GMT
Content-Type: application/json;charset=utf-8
Content-Length: 33
Server: Jetty(9.4.8.v20171121)
{"hello":"hello","world":"world"}
同时明确请求 Accept: text/html
也有效
curl -i -X GET 'http://localhost:8080/v1/example' -H 'Accept: text/html'
HTTP/1.1 200 OK
Date: Fri, 26 Apr 2019 15:45:22 GMT
Content-Type: text/html;charset=utf-8
Content-Length: 23
Server: Jetty(9.4.8.v20171121)
HelloWorld(hello,world)
我正在学习 Scalatra,我想知道如何使我的回复 Content-Type 成为默认值 application/json
。当前默认值似乎是 text/html
。整洁,但对我的应用程序不是很有用。
当前默认值为 text/html
。
$ curl -i -X GET 'http://localhost:8080/v1/example'
HTTP/1.1 200 OK
Date: Fri, 19 Apr 2019 07:21:21 GMT
Content-Type: text/html;charset=utf-8
Content-Length: 23
Server: Jetty(9.4.8.v20171121)
HelloWorld(hello,world)
我可以通过 Accepted: application/json
header.
application-json
$ curl -i -X GET 'http://localhost:8080/v1/example' -H 'Accept: application/json'
HTTP/1.1 200 OK
Date: Fri, 19 Apr 2019 07:22:09 GMT
Content-Type: application/json;charset=utf-8
Transfer-Encoding: chunked
Server: Jetty(9.4.8.v20171121)
{"hello":"hello","world":"world"}
如何将默认值设置为 application/json
。
defaultFormat
可以被覆盖以使 application/json
成为默认情况。例如,
import java.io.File
import org.scalatra._
import org.scalatra.util.MimeTypes
import org.json4s.{DefaultFormats, Formats}
import org.scalatra.json._
case class HelloWorld(hello: String, world: String)
class MyScalatraServlet extends ScalatraServlet with JacksonJsonSupport {
protected implicit lazy val jsonFormats: Formats = DefaultFormats
override def defaultFormat: Symbol = 'json
get("/v1/example") {
HelloWorld("hello", "world")
}
}
未指定 Accept
header 应响应
curl -i -X GET 'http://localhost:8080/v1/example'
HTTP/1.1 200 OK
Date: Thu, 25 Apr 2019 22:28:37 GMT
Content-Type: application/json;charset=utf-8
Content-Length: 33
Server: Jetty(9.4.8.v20171121)
{"hello":"hello","world":"world"}
同时明确请求 Accept: text/html
也有效
curl -i -X GET 'http://localhost:8080/v1/example' -H 'Accept: text/html'
HTTP/1.1 200 OK
Date: Fri, 26 Apr 2019 15:45:22 GMT
Content-Type: text/html;charset=utf-8
Content-Length: 23
Server: Jetty(9.4.8.v20171121)
HelloWorld(hello,world)