fix:RepeatedlyRequestWrapper.ServletInputStream 实现available方法

feature/model
wangyuanyang 4 years ago
parent 266a5e844f
commit 347f36ceff

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

Loading…
Cancel
Save