Package br.net.woodstock.rockframework.web.util

Examples of br.net.woodstock.rockframework.web.util.ReadableHttpServletRequest


public class HttpRequestWriterFilter extends AbstractHttpFilter {

  @Override
  public void doFilter(final HttpServletRequest request, final HttpServletResponse response, final FilterChain chain) throws IOException, ServletException {
    HttpServletRequestWrapper wrapper = new ReadableHttpServletRequest(request);
    InputStream inputStream = wrapper.getInputStream();
    String body = IOUtils.toString(inputStream);
    this.printBody(body);
    chain.doFilter(wrapper, response);
  }
View Full Code Here

TOP

Related Classes of br.net.woodstock.rockframework.web.util.ReadableHttpServletRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.