Hi,

I have two interceptors which need to "know" the HTTP payload. I cannot use request.getInputStream(), because of course input-stream can only read out once.

But my two interceptors need to access the "bare" payload. Is there a spring-mvc feature which solves my problem, accessing the HTTP payload in two different interceptors?

I found hacky ways on the net, but hopefully spring (version 3) offers a more encapsulated/elegant way.

thanks.