Resonse与ResponseBuilder的关系
Background:在前后端分离的项目中,客户端发出上传文件请求,客户端如何响应
1,客户端发出请求
2,服务器接收请求并获取上传文件中的内容,如有,将内容转换为entity,
根据如下来返回响应
//用ReponseBuilder来创建Response
protected Response handlesResult(Object entity) {
//Response.status(Status.OK)用状态码来创建ResponseBuilder
ResponseBuilder responseBuilder = Response.status(Status.OK);
//Set the message entity media typeresponseBuilder.type(MediaType.APPLICATION_JSON);
//Set the response entity in the builderresponseBuilder.entity(entity);
//responseBuilder.build()创建的Responsereturn responseBuilder.build();
}