显示使用HttpServletResponse响应接口(下载文件等)后,如果再使用 return,配合接口的@ResponseBody、@RestController等注解,会导致一些报错和不正常情况
@ResponseBody的作用
@ResponseBody注解的作用是将controller的方法返回的对象通过适当的转换器转换为指定的格式之后,写入到response对象的body区,通常用来返回JSON数据、XML、文件等数据,在使用此注解之后不会再走视图处理器,而是直接将数据写入到输出流中,效果等同于通过response对象输出指定格式的数据。
@RequestMapping("/login")
@ResponseBody
public User login(User user){
return user;
}
//效果等同于如下代码:
@RequestMapping("/login")
public void login(User user, HttpServletResponse response){
response.getWriter.write(JSONObject.fromObject(user).toString());
}
@RestController的作用
这个就不用多说了,因为他自己包含了@ResponseBody注解,源码如下
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody //这个这个这个
public @interface RestController {
/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* @return the suggested component name, if any (or empty String otherwise)
* @since 4.0.1
*/
@AliasFor(annotation = Controller.class)
String value() default "";
}
使用HttpServletResponse的情况
许多下载文件的接口,直接了使用HttpServletResponse的对象,如下
response.setContentType("application/force-download");
response.setCharacterEncoding("utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + CommonUtil.encodeChineseDownloadFileName(request, fileName));
IOUtils.copy(inputStream, outputStream);
这种情况下直接结束了当次请求响应,所以不需要在使用return、@ResponseBody来响应
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/93709.html