fix:RepeatedlyRequestWrapper.ServletInputStream 实现available方法

This commit is contained in:
wangyuanyang 2021-03-29 10:17:31 +08:00
parent 266a5e844f
commit 347f36ceff
1 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,11 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper
{ {
} }
@Override
public int available() throws IOException {
return body.length;
}
}; };
} }
} }