jersey 确实支持 treturn gzip 字节

发布于 2024-12-09 16:42:51 字数 436 浏览 0 评论 0原文

目前我使用response返回一个xml文件。但当文件较大时,似乎性能不好。 所以我想知道如何返回 byte[] (gzip /xml) IE/firefox 也可以在我使用 servlet 之前从 gzip 字节数组显示这个 xml 文件

自动显示 xml 文件,我想在 init 函数中添加一些数据库连接并销毁它

@GET
@Path("/Test/{CustomerId}")
@Produces("application/xml")
public Response getTest() throws IOException {
    return Response.ok().entity(new FileInputStream("CC100_PC.xml")).build();

}

,它可以通过 Jersey 如何支持 init 和 Destroy 函数

current now i used response to return a xml file . but seems the performance is not good when file is lager.
so i would like know that how to return a byte[] (gzip /xml)
also the IE/firefox can dispaly this xml file from gzip byte array

before i use servlet it can auto show the xml file

@GET
@Path("/Test/{CustomerId}")
@Produces("application/xml")
public Response getTest() throws IOException {
    return Response.ok().entity(new FileInputStream("CC100_PC.xml")).build();

}

by the way Jersey how to support init and Destroy function , i want add some database connection into init function and destroy it

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

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

发布评论

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

评论(1

离鸿 2024-12-16 16:42:51

只需将 GZIPContentEncodingFilter 添加到您的 Jersey 应用程序 - 请参阅 http://jersey.java.net/nonav/apidocs/latest/jersey/com/sun/jersey/api/container/filter/GZIPContentEncodingFilter.html

这将自动使用 GZIP 压缩它客户端是否支持(从 Accept-Encoding HTTP 标头中确定)。

Just add the GZIPContentEncodingFilter to your Jersey app - see http://jersey.java.net/nonav/apidocs/latest/jersey/com/sun/jersey/api/container/filter/GZIPContentEncodingFilter.html

That will automatically compress it using GZIP if the client supports it (which it figures out from the Accept-Encoding HTTP header).

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