Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我的过滤器链中多次读取请求对象的输入流。我应该如何使用 RequestFacade 包装类来做到这一点。
不能保证输入流可以倒带。你可以打电话markSupported(),如果返回,true那么mark()在你开始阅读并reset()倒带之前。如果markSupported()返回 false 那么你必须自己缓冲它。
markSupported()
true
mark()
reset()