javax.servlet.http.HttpServletResponseWrapper.encodeRedirectUrl(String)
use encodeRedirectURL()
|
javax.servlet.http.HttpServletResponse.encodeRedirectUrl(String)
use encodeRedirectURL()
|
javax.servlet.http.HttpServletResponseWrapper.encodeUrl(String)
use encodeURL()
|
javax.servlet.http.HttpServletResponse.encodeUrl(String)
use encodeURL()
|
javax.servlet.jsp.el.ExpressionEvaluator.evaluate(String, Class, VariableResolver, FunctionMapper) |
javax.servlet.jsp.JspContext.getExpressionEvaluator()
|
javax.servlet.http.HttpSessionContext.getIds()
This method should always return an empty enumeration
|
javax.servlet.ServletRequestWrapper.getRealPath(String)
Should use getRealPath from the current ServletContext.
|
javax.servlet.ServletRequest.getRealPath(String)
Should use getRealPath from the current ServletContext.
|
javax.servlet.http.HttpUtils.getRequestURL(HttpServletRequest) |
javax.servlet.jsp.JspException.getRootCause()
use Throwable.getCause() .
|
javax.servlet.UnavailableException.getServlet()
no replacement
|
javax.servlet.ServletContext.getServlet(String)
|
javax.servlet.ServletContext.getServletNames()
since 2.1, use a RequestDispatcher
instead; now this always returns an empty Enumeration .
|
javax.servlet.ServletContext.getServlets()
as of Servlet API 2.1, there is no equivalent now.
this Always returns an empty Enumeration .
|
javax.servlet.http.HttpSessionContext.getSession(String)
This method should always return null
|
javax.servlet.http.HttpSession.getSessionContext()
HttpSessionContext has been deprecated for
security reasons.
|
javax.servlet.http.HttpSession.getValue(String)
|
javax.servlet.http.HttpSession.getValueNames()
|
javax.servlet.jsp.JspContext.getVariableResolver()
|
javax.servlet.http.HttpServletRequestWrapper.isRequestedSessionIdFromUrl()
|
javax.servlet.http.HttpServletRequest.isRequestedSessionIdFromUrl()
|
javax.servlet.ServletContext.log(Exception, String)
Use log(String, Throwable) which is more
general.
|
javax.servlet.jsp.el.ExpressionEvaluator.parseExpression(String, Class, FunctionMapper) |
javax.servlet.http.HttpUtils.parsePostData(int, ServletInputStream) |
javax.servlet.http.HttpUtils.parseQueryString(String) |
javax.servlet.http.HttpSession.putValue(String, Object)
|
javax.servlet.http.HttpSession.removeValue(String)
|
javax.servlet.http.HttpServletResponseWrapper.setStatus(int, String)
only errors should give an extra error message,
|
javax.servlet.http.HttpServletResponse.setStatus(int, String)
only errors should give an extra error message,
if you only want to set the status code use setStatus(int) .
|