# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # These methods from the Servlet API should not be used, because they are # either broken and slow in some environments (e.g., Jetty's UTF-8 readers), # or the parsing of request parameters is not using the correct encoding # without extra configuration in the servlet container: javax.servlet.ServletRequest#getReader() javax.servlet.ServletRequest#getParameter(java.lang.String) javax.servlet.ServletRequest#getParameterMap() javax.servlet.ServletRequest#getParameterNames() javax.servlet.ServletRequest#getParameterValues(java.lang.String) javax.servlet.ServletResponse#getWriter() javax.servlet.ServletInputStream#readLine(byte[],int,int) javax.servlet.ServletOutputStream#print(boolean) javax.servlet.ServletOutputStream#print(char) javax.servlet.ServletOutputStream#print(double) javax.servlet.ServletOutputStream#print(float) javax.servlet.ServletOutputStream#print(int) javax.servlet.ServletOutputStream#print(long) javax.servlet.ServletOutputStream#print(java.lang.String) javax.servlet.ServletOutputStream#println(boolean) javax.servlet.ServletOutputStream#println(char) javax.servlet.ServletOutputStream#println(double) javax.servlet.ServletOutputStream#println(float) javax.servlet.ServletOutputStream#println(int) javax.servlet.ServletOutputStream#println(long) javax.servlet.ServletOutputStream#println(java.lang.String)