Commit fc57e91b authored by 若依's avatar 若依 Committed by Gitee

!196 RepeatedlyRequestWrapper.ServletInputStream 实现available方法

Merge pull request !196 from wangyang/master
parents 266a5e84 347f36ce
...@@ -67,6 +67,11 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper ...@@ -67,6 +67,11 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper
{ {
} }
@Override
public int available() throws IOException {
return body.length;
}
}; };
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment