blob: 472c24caf132854edce86896fe52fe18dc1dbb07 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Raymond Augé and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Raymond Augé <raymond.auge@liferay.com> - Bug 464377
******************************************************************************/
package org.eclipse.equinox.http.servlet.tests.util;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class BufferedServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
static final char[] value = String.format("%01023d", 1).toCharArray();
@Override
protected void service(
HttpServletRequest request, HttpServletResponse response)
throws IOException {
response.setContentType( "text/html" );
response.setBufferSize(value.length);
PrintWriter writer = response.getWriter();
for (int i = 0; i < 10; i++) {
writer.print(value);
response.flushBuffer();
response.setStatus(HttpServletResponse.SC_OK);
}
writer.print(value);
}
}