jersey 确实支持 treturn gzip 字节
目前我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将 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).