第 3 方服务正在使用 HttpClient (3.1) 获取我通过 Jersey(在 tomcat 上)提供的 url。它在主题中抛出错误。
这就是我提供 URL 的方式:
@Path("somepath")
@GET
@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response download(@Context UriInfo uriInfo) {
try {
URL url = // find the actual URL (a file)
InputStream stream = url.openStream();
return Response.ok(stream).build();
} catch (IOException e) {
return Responses.notFound().build();
}
}
有没有办法解决这个问题?