HTTP CacheControl 与 Jersey 和 json 实现

发布于 2024-10-14 21:53:54 字数 885 浏览 1 评论 0原文

我想将 CacheControl 信息添加到使用 json 绑定的 GET 服务。 我发现将cacheControl 添加到响应中,REST 服务听起来像这样:

@GET
@Path("cacheheadertest")
@Produces({"*/*"})
def testcache():javax.ws.rs.core.Response {
    val rb:Response.ResponseBuilder = javax.ws.rs.core.Response.ok("chached test message")
    val cc = new CacheControl()
    cc.setMaxAge(60)
    cc.setNoCache(false)
    rb.cacheControl(cc).build()

}

但我有一个生成json 消息的REST 服务,并且jersey 库自动将java 对象从java 转换为xml/json。

@GET
@Path("jsontestcache")
@Produces(Array(MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML))
def myjsontestservice(@HeaderParam("X-TOKENID") tokenId: String,
@QueryParam("clientId") clientId: String):com.test.MyResultClass = {
 val response= new com.test.MyResultClass
 [...]

 response
}

如何将缓存控制添加到 myjsontestservice 服务的响应中?一旦球衣创建了响应,我是否需要使用过滤器并附加缓存控件? 谢谢百万 弗拉维奥

I want to add the CacheControl intormation to a GET service that use the json binding.
I found that to add the cacheControl to a response the REST service sound like this:

@GET
@Path("cacheheadertest")
@Produces({"*/*"})
def testcache():javax.ws.rs.core.Response {
    val rb:Response.ResponseBuilder = javax.ws.rs.core.Response.ok("chached test message")
    val cc = new CacheControl()
    cc.setMaxAge(60)
    cc.setNoCache(false)
    rb.cacheControl(cc).build()

}

but I have a REST service that produce json messages and the jersey library transform automaticcally the java object from java to xml/json.

@GET
@Path("jsontestcache")
@Produces(Array(MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML))
def myjsontestservice(@HeaderParam("X-TOKENID") tokenId: String,
@QueryParam("clientId") clientId: String):com.test.MyResultClass = {
 val response= new com.test.MyResultClass
 [...]

 response
}

How can I add the cache control to the response of myjsontestservice service? Do I need to use a filter and append the cachecontrol once the response has been created by jersey?
thanks million
Flavio

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬 2024-10-21 21:53:54

您仍然需要返回一个 Response 对象。

def somejson() : Response = {
  val builder = Response.ok(new com.test.MyResultClass);
  val cc = new CacheControl()
  cc.setMaxAge(60)
  cc.setNoCache(false)
  builder.cacheControl(cc).build()
}

Jersey 的拦截器会自动将您的类转换为 JSON 对象。

You would still need to return a Response object.

def somejson() : Response = {
  val builder = Response.ok(new com.test.MyResultClass);
  val cc = new CacheControl()
  cc.setMaxAge(60)
  cc.setNoCache(false)
  builder.cacheControl(cc).build()
}

Jersey's interceptors will automatically convert your class into a JSON object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文