关于Cannot call sendRedirect() after the response has been committed的解决办法
在servlet重定向的时候遇到这个错误:
Java.lang.IllegalStateException: Cannot call sendRedirect() after the response has been committed
原因如下:
1.response重定向后没有return,后续程序继续运行,遇到了后续的再次重定向代码报错。
2.response重定向前关闭了流,导致问题出现
【-_-||】