报错如下
java.lang.IllegalStateException: getOutputStream() has already been called for this response
前端代码使用的ajax向后台传递数据,后台是一个接收此数据的Controller层方法。
最后查找原因,竟然是我没有加@ResponseBody注解。
报错如下
java.lang.IllegalStateException: getOutputStream() has already been called for this response
前端代码使用的ajax向后台传递数据,后台是一个接收此数据的Controller层方法。
最后查找原因,竟然是我没有加@ResponseBody注解。