Commit 347f36ce authored by wangyuanyang's avatar wangyuanyang

fix:RepeatedlyRequestWrapper.ServletInputStream 实现available方法

parent 266a5e84
...@@ -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