|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectorg.eclipse.jetty.server.Request
public class Request
Jetty Request.
Implements HttpServletRequest from the javax.servlet.http package.
The standard interface of mostly getters, is extended with setters so that the request is mutable by the handlers that it is passed to. This allows the request object to be as lightweight as possible and not actually implement any significant behavior. For example
getContextPath() method will return null, until the request has been passed to a ContextHandler which matches the
getPathInfo() with a context path and calls setContextPath(String) as a result.SessionHandler which checks for session cookies and enables the ability to create new sessions.getServletPath() method will return null until the request has been passed to a org.eclipse.jetty.servlet.ServletHandler
and the pathInfo matched against the servlet URL patterns and setServletPath(String) called as a result.AbstractHttpConnection accepted by the server and recycled for each HTTP request received via that connection.
An effort is made to avoid reparsing headers and cookies that are likely to be the same for requests from the same connection.
The form content that a request can process is limited to protect from Denial of Service attacks. The size in bytes is limited by
ContextHandler.getMaxFormContentSize() or if there is no context then the "org.eclipse.jetty.server.Request.maxFormContentSize" Server
attribute. The number of parameters keys is limited by ContextHandler.getMaxFormKeys() or if there is no context then the
"org.eclipse.jetty.server.Request.maxFormKeys" Server attribute.
| 嵌套类摘要 | |
|---|---|
static class |
Request.MultiPartCleanerListener
|
| 字段摘要 | |
|---|---|
static String |
__MULTIPART_CONFIG_ELEMENT
|
static String |
__MULTIPART_CONTEXT
|
static String |
__MULTIPART_INPUT_STREAM
|
protected AsyncContinuation |
_async
|
protected AbstractHttpConnection |
_connection
|
| 从接口 javax.servlet.http.HttpServletRequest 继承的字段 |
|---|
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH |
| 构造方法摘要 | |
|---|---|
Request()
|
|
Request(AbstractHttpConnection connection)
|
|
| 方法摘要 | |
|---|---|
void |
addEventListener(EventListener listener)
|
boolean |
authenticate(HttpServletResponse response)
Use the container login mechanism configured for the ServletContext to authenticate the user making
this request. |
void |
extractParameters()
Extract Parameters from query string and/or form _content. |
AsyncContext |
getAsyncContext()
Gets the AsyncContext that was created or reinitialized by the most recent invocation of ServletRequest.startAsync() or
ServletRequest.startAsync(ServletRequest,ServletResponse) on this request. |
AsyncContinuation |
getAsyncContinuation()
|
Object |
getAttribute(String name)
Returns the value of the named attribute as an Object,
or null if no attribute of the given name exists. |
Enumeration |
getAttributeNames()
Returns an Enumeration containing the
names of the attributes available to this request. |
Attributes |
getAttributes()
|
Authentication |
getAuthentication()
Get the authentication. |
String |
getAuthType()
Returns the name of the authentication scheme used to protect the servlet. |
String |
getCharacterEncoding()
Returns the name of the character encoding used in the body of this request. |
AbstractHttpConnection |
getConnection()
|
int |
getContentLength()
Returns the length, in bytes, of the request body and made available by the input stream, or -1 if the length is not known. |
long |
getContentRead()
|
String |
getContentType()
Returns the MIME type of the body of the request, or null if the type is not known. |
ContextHandler.Context |
getContext()
|
String |
getContextPath()
Returns the portion of the request URI that indicates the context of the request. |
Cookie[] |
getCookies()
Returns an array containing all of the Cookie
objects the client sent with this request. |
long |
getDateHeader(String name)
Returns the value of the specified request header as a long value that represents a
Date object. |
DispatcherType |
getDispatcherType()
Gets the dispatcher type of this request. |
long |
getDispatchTime()
Get timestamp of the request dispatch |
String |
getHeader(String name)
Returns the value of the specified request header as a String. |
Enumeration |
getHeaderNames()
Returns an enumeration of all the header names this request contains. |
Enumeration |
getHeaders(String name)
Returns all the values of the specified request header as an Enumeration of String objects. |
int |
getInputState()
|
ServletInputStream |
getInputStream()
Retrieves the body of the request as binary data using a ServletInputStream. |
int |
getIntHeader(String name)
Returns the value of the specified request header as an int. |
String |
getLocalAddr()
Returns the Internet Protocol (IP) address of the interface on which the request was received. |
Locale |
getLocale()
Returns the preferred Locale that the client will
accept content in, based on the Accept-Language header. |
Enumeration |
getLocales()
Returns an Enumeration of Locale objects
indicating, in decreasing order starting with the preferred locale, the
locales that are acceptable to the client based on the Accept-Language
header. |
String |
getLocalName()
Returns the host name of the Internet Protocol (IP) interface on which the request was received. |
int |
getLocalPort()
Returns the Internet Protocol (IP) port number of the interface on which the request was received. |
String |
getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT. |
String |
getParameter(String name)
Returns the value of a request parameter as a String,
or null if the parameter does not exist. |
Map |
getParameterMap()
Returns a java.util.Map of the parameters of this request. |
Enumeration |
getParameterNames()
Returns an Enumeration of String
objects containing the names of the parameters contained
in this request. |
MultiMap<String> |
getParameters()
|
String[] |
getParameterValues(String name)
Returns an array of String objects containing
all of the values the given request parameter has, or
null if the parameter does not exist. |
Part |
getPart(String name)
Gets the Part with the given name. |
Collection<Part> |
getParts()
Gets all the Part components of this request, provided
that it is of type multipart/form-data. |
String |
getPathInfo()
Returns any extra path information associated with the URL the client sent when it made this request. |
String |
getPathTranslated()
Returns any extra path information after the servlet name but before the query string, and translates it to a real path. |
String |
getProtocol()
Returns the name and version of the protocol the request uses in the form protocol/majorVersion.minorVersion, for example, HTTP/1.1. |
String |
getQueryEncoding()
|
String |
getQueryString()
Returns the query string that is contained in the request URL after the path. |
BufferedReader |
getReader()
Retrieves the body of the request as character data using a BufferedReader. |
String |
getRealPath(String path)
|
String |
getRemoteAddr()
Returns the Internet Protocol (IP) address of the client or last proxy that sent the request. |
String |
getRemoteHost()
Returns the fully qualified name of the client or the last proxy that sent the request. |
int |
getRemotePort()
Returns the Internet Protocol (IP) source port of the client or last proxy that sent the request. |
String |
getRemoteUser()
Returns the login of the user making this request, if the user has been authenticated, or null if the user
has not been authenticated. |
static Request |
getRequest(HttpServletRequest request)
|
RequestDispatcher |
getRequestDispatcher(String path)
Returns a RequestDispatcher object that acts as a wrapper for
the resource located at the given path. |
String |
getRequestedSessionId()
Returns the session ID specified by the client. |
String |
getRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request. |
StringBuffer |
getRequestURL()
Reconstructs the URL the client used to make the request. |
UserIdentity |
getResolvedUserIdentity()
|
Response |
getResponse()
|
StringBuilder |
getRootURL()
Reconstructs the URL the client used to make the request. |
String |
getScheme()
Returns the name of the scheme used to make this request, for example, http, https, or ftp. |
String |
getServerName()
Returns the host name of the server to which the request was sent. |
int |
getServerPort()
Returns the port number to which the request was sent. |
ServletContext |
getServletContext()
Gets the servlet context to which this ServletRequest was last dispatched. |
String |
getServletName()
|
String |
getServletPath()
Returns the part of this request's URL that calls the servlet. |
ServletResponse |
getServletResponse()
|
HttpSession |
getSession()
Returns the current session associated with this request, or if the request does not have a session, creates one. |
HttpSession |
getSession(boolean create)
Returns the current HttpSession
associated with this request or, if there is no
current session and create is true, returns
a new session. |
SessionManager |
getSessionManager()
|
long |
getTimeStamp()
Get Request TimeStamp |
Buffer |
getTimeStampBuffer()
Get Request TimeStamp |
HttpURI |
getUri()
|
UserIdentity |
getUserIdentity()
|
UserIdentity.Scope |
getUserIdentityScope()
|
Principal |
getUserPrincipal()
Returns a java.security.Principal object containing
the name of the current authenticated user. |
boolean |
isAsyncStarted()
Checks if this request has been put into asynchronous mode. |
boolean |
isAsyncSupported()
Checks if this request supports asynchronous operation. |
boolean |
isHandled()
|
boolean |
isRequestedSessionIdFromCookie()
Checks whether the requested session ID came in as a cookie. |
boolean |
isRequestedSessionIdFromUrl()
|
boolean |
isRequestedSessionIdFromURL()
Checks whether the requested session ID came in as part of the request URL. |
boolean |
isRequestedSessionIdValid()
Checks whether the requested session ID is still valid. |
boolean |
isSecure()
Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS. |
boolean |
isUserInRole(String role)
Returns a boolean indicating whether the authenticated user is included in the specified logical "role". |
void |
login(String username,
String password)
Validate the provided username and password in the password validation realm used by the web container login mechanism configured for the ServletContext. |
void |
logout()
Establish null as the value returned when
getUserPrincipal, getRemoteUser,
and getAuthType is called on the request. |
void |
mergeQueryString(String query)
Merge in a new query string. |
HttpSession |
recoverNewSession(Object key)
|
protected void |
recycle()
|
void |
removeAttribute(String name)
Removes an attribute from this request. |
void |
removeEventListener(EventListener listener)
|
void |
saveNewSession(Object key,
HttpSession session)
|
void |
setAsyncSupported(boolean supported)
|
void |
setAttribute(String name,
Object value)
Stores an attribute in this request. |
void |
setAttributes(Attributes attributes)
|
void |
setAuthentication(Authentication authentication)
Set the authentication. |
void |
setCharacterEncoding(String encoding)
Overrides the name of the character encoding used in the body of this request. |
void |
setCharacterEncodingUnchecked(String encoding)
|
protected void |
setConnection(AbstractHttpConnection connection)
|
void |
setContentType(String contentType)
|
void |
setContext(ContextHandler.Context context)
Set request context |
void |
setContextPath(String contextPath)
Sets the "context path" for this request |
void |
setCookies(Cookie[] cookies)
|
void |
setDispatcherType(DispatcherType type)
|
void |
setDispatchTime(long value)
Set timetstamp of request dispatch |
void |
setHandled(boolean h)
|
void |
setMethod(String method)
|
void |
setParameters(MultiMap<String> parameters)
|
void |
setPathInfo(String pathInfo)
|
void |
setProtocol(String protocol)
|
void |
setQueryEncoding(String queryEncoding)
Set the character encoding used for the query string. |
void |
setQueryString(String queryString)
|
void |
setRemoteAddr(String addr)
|
void |
setRemoteHost(String host)
|
void |
setRequestedSessionId(String requestedSessionId)
|
void |
setRequestedSessionIdFromCookie(boolean requestedSessionIdCookie)
|
void |
setRequestURI(String requestURI)
|
void |
setScheme(String scheme)
|
void |
setServerName(String host)
|
void |
setServerPort(int port)
|
void |
setServletPath(String servletPath)
|
void |
setSession(HttpSession session)
|
void |
setSessionManager(SessionManager sessionManager)
|
void |
setTimeStamp(long ts)
|
void |
setUri(HttpURI uri)
|
void |
setUserIdentityScope(UserIdentity.Scope scope)
|
AsyncContext |
startAsync()
Puts this request into asynchronous mode, and initializes its AsyncContext with the original (unwrapped) ServletRequest
and ServletResponse objects. |
AsyncContext |
startAsync(ServletRequest servletRequest,
ServletResponse servletResponse)
Puts this request into asynchronous mode, and initializes its AsyncContext with the given request and response objects. |
boolean |
takeNewContext()
|
String |
toString()
|
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| 字段详细信息 |
|---|
public static final String __MULTIPART_CONFIG_ELEMENT
public static final String __MULTIPART_INPUT_STREAM
public static final String __MULTIPART_CONTEXT
protected final AsyncContinuation _async
protected AbstractHttpConnection _connection
| 构造方法详细信息 |
|---|
public Request()
public Request(AbstractHttpConnection connection)
| 方法详细信息 |
|---|
public static Request getRequest(HttpServletRequest request)
public void addEventListener(EventListener listener)
public void extractParameters()
public AsyncContext getAsyncContext()
ServletRequest 复制的描述ServletRequest.startAsync() or
ServletRequest.startAsync(ServletRequest,ServletResponse) on this request.
ServletRequest 中的 getAsyncContextServletRequest.startAsync() or
ServletRequest.startAsync(ServletRequest,ServletResponse) on
this requestpublic AsyncContinuation getAsyncContinuation()
public Object getAttribute(String name)
ServletRequest 复制的描述Object,
or null if no attribute of the given name exists.
Attributes can be set two ways. The servlet container may set
attributes to make available custom information about a request.
For example, for requests made using HTTPS, the attribute
javax.servlet.request.X509Certificate can be used to
retrieve information on the certificate of the client. Attributes
can also be set programatically using
ServletRequest.setAttribute(java.lang.String, java.lang.Object). This allows information to be
embedded into a request before a RequestDispatcher call.
Attribute names should follow the same conventions as package
names. This specification reserves names matching java.*,
javax.*, and sun.*.
ServletRequest 中的 getAttributename - a String specifying the name of
the attribute
Object containing the value
of the attribute, or null if
the attribute does not existpublic Enumeration getAttributeNames()
ServletRequest 复制的描述Enumeration containing the
names of the attributes available to this request.
This method returns an empty Enumeration
if the request has no attributes available to it.
ServletRequest 中的 getAttributeNamesEnumeration of strings
containing the names
of the request's attributespublic Attributes getAttributes()
public Authentication getAuthentication()
public String getAuthType()
HttpServletRequest 复制的描述null is returned.
Same as the value of the CGI variable AUTH_TYPE.
HttpServletRequest 中的 getAuthTypenull if the request was
not authenticated.public String getCharacterEncoding()
ServletRequest 复制的描述null if the request
does not specify a character encoding
ServletRequest 中的 getCharacterEncodingString containing the name of
the character encoding, or null
if the request does not specify a character encodingpublic AbstractHttpConnection getConnection()
public int getContentLength()
ServletRequest 复制的描述
ServletRequest 中的 getContentLengthpublic long getContentRead()
public String getContentType()
ServletRequest 复制的描述null if the type is not known. For HTTP servlets,
same as the value of the CGI variable CONTENT_TYPE.
ServletRequest 中的 getContentTypeString containing the name
of the MIME type of
the request, or null if the type is not knownpublic ContextHandler.Context getContext()
context used for this request, or null if setContext(org.eclipse.jetty.server.handler.ContextHandler.Context) has not yet been called.public String getContextPath()
HttpServletRequest 复制的描述It is possible that a servlet container may match a context by
more than one context path. In such cases this method will return the
actual context path used by the request and it may differ from the
path returned by the
ServletContext.getContextPath() method.
The context path returned by
ServletContext.getContextPath()
should be considered as the prime or preferred context path of the
application.
HttpServletRequest 中的 getContextPathString specifying the
portion of the request URI that indicates the context
of the requestServletContext.getContextPath()public Cookie[] getCookies()
HttpServletRequest 复制的描述Cookie
objects the client sent with this request.
This method returns null if no cookies were sent.
HttpServletRequest 中的 getCookiesCookies
included with this request, or null
if the request has no cookiespublic long getDateHeader(String name)
HttpServletRequest 复制的描述long value that represents a
Date object. Use this method with
headers that contain dates, such as
If-Modified-Since.
The date is returned as the number of milliseconds since January 1, 1970 GMT. The header name is case insensitive.
If the request did not have a header of the
specified name, this method returns -1. If the header
can't be converted to a date, the method throws
an IllegalArgumentException.
HttpServletRequest 中的 getDateHeadername - a String specifying the
name of the header
long value
representing the date specified
in the header expressed as
the number of milliseconds
since January 1, 1970 GMT,
or -1 if the named header
was not included with the
requestpublic DispatcherType getDispatcherType()
ServletRequest 复制的描述The dispatcher type of a request is used by the container to select the filters that need to be applied to the request: Only filters with matching dispatcher type and url patterns will be applied.
Allowing a filter that has been configured for multiple dispatcher types to query a request for its dispatcher type allows the filter to process the request differently depending on its dispatcher type.
The initial dispatcher type of a request is defined as
DispatcherType.REQUEST. The dispatcher type of a request
dispatched via RequestDispatcher.forward(ServletRequest,
ServletResponse) or RequestDispatcher.include(ServletRequest,
ServletResponse) is given as DispatcherType.FORWARD or
DispatcherType.INCLUDE, respectively, while the
dispatcher type of an asynchronous request dispatched via
one of the AsyncContext.dispatch() methods is given as
DispatcherType.ASYNC. Finally, the dispatcher type of a
request dispatched to an error page by the container's error handling
mechanism is given as DispatcherType.ERROR.
ServletRequest 中的 getDispatcherTypeDispatcherTypepublic String getHeader(String name)
HttpServletRequest 复制的描述String. If the request did not include a header
of the specified name, this method returns null.
If there are multiple headers with the same name, this method
returns the first head in the request.
The header name is case insensitive. You can use
this method with any request header.
HttpServletRequest 中的 getHeadername - a String specifying the
header name
String containing the
value of the requested
header, or null
if the request does not
have a header of that namepublic Enumeration getHeaderNames()
HttpServletRequest 复制的描述Some servlet containers do not allow
servlets to access headers using this method, in
which case this method returns null
HttpServletRequest 中的 getHeaderNamesnullpublic Enumeration getHeaders(String name)
HttpServletRequest 复制的描述Enumeration of String objects.
Some headers, such as Accept-Language can be sent
by clients as several headers each with a different value rather than
sending the header as a comma separated list.
If the request did not include any headers
of the specified name, this method returns an empty
Enumeration.
The header name is case insensitive. You can use
this method with any request header.
HttpServletRequest 中的 getHeadersname - a String specifying the
header name
Enumeration containing
the values of the requested header. If
the request does not have any headers of
that name return an empty
enumeration. If
the container does not allow access to
header information, return nullpublic int getInputState()
public ServletInputStream getInputStream()
throws IOException
ServletRequest 复制的描述ServletInputStream. Either this method or
ServletRequest.getReader() may be called to read the body, not both.
ServletRequest 中的 getInputStreamServletInputStream object containing
the body of the request
IOException - if an input or output exception occurredpublic int getIntHeader(String name)
HttpServletRequest 复制的描述int. If the request does not have a header
of the specified name, this method returns -1. If the
header cannot be converted to an integer, this method
throws a NumberFormatException.
The header name is case insensitive.
HttpServletRequest 中的 getIntHeadername - a String specifying the name
of a request header
public String getLocalAddr()
ServletRequest 复制的描述
ServletRequest 中的 getLocalAddrString containing the
IP address on which the request was received.public Locale getLocale()
ServletRequest 复制的描述Locale that the client will
accept content in, based on the Accept-Language header.
If the client request doesn't provide an Accept-Language header,
this method returns the default locale for the server.
ServletRequest 中的 getLocaleLocale for the clientpublic Enumeration getLocales()
ServletRequest 复制的描述Enumeration of Locale objects
indicating, in decreasing order starting with the preferred locale, the
locales that are acceptable to the client based on the Accept-Language
header.
If the client request doesn't provide an Accept-Language header,
this method returns an Enumeration containing one
Locale, the default locale for the server.
ServletRequest 中的 getLocalesEnumeration of preferred
Locale objects for the clientpublic String getLocalName()
ServletRequest 复制的描述
ServletRequest 中的 getLocalNameString containing the host
name of the IP on which the request was received.public int getLocalPort()
ServletRequest 复制的描述
ServletRequest 中的 getLocalPortpublic String getMethod()
HttpServletRequest 复制的描述
HttpServletRequest 中的 getMethodString
specifying the name
of the method with which
this request was madepublic String getParameter(String name)
ServletRequest 复制的描述String,
or null if the parameter does not exist. Request parameters
are extra information sent with the request. For HTTP servlets,
parameters are contained in the query string or posted form data.
You should only use this method when you are sure the
parameter has only one value. If the parameter might have
more than one value, use ServletRequest.getParameterValues(java.lang.String).
If you use this method with a multivalued
parameter, the value returned is equal to the first value
in the array returned by getParameterValues.
If the parameter data was sent in the request body, such as occurs
with an HTTP POST request, then reading the body directly via ServletRequest.getInputStream() or ServletRequest.getReader() can interfere
with the execution of this method.
ServletRequest 中的 getParametername - a String specifying the
name of the parameter
String representing the
single value of the parameterServletRequest.getParameterValues(java.lang.String)public Map getParameterMap()
ServletRequest 复制的描述Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data.
ServletRequest 中的 getParameterMappublic Enumeration getParameterNames()
ServletRequest 复制的描述Enumeration of String
objects containing the names of the parameters contained
in this request. If the request has
no parameters, the method returns an
empty Enumeration.
ServletRequest 中的 getParameterNamesEnumeration of String
objects, each String containing
the name of a request parameter; or an
empty Enumeration if the
request has no parameterspublic MultiMap<String> getParameters()
public String[] getParameterValues(String name)
ServletRequest 复制的描述String objects containing
all of the values the given request parameter has, or
null if the parameter does not exist.
If the parameter has a single value, the array has a length of 1.
ServletRequest 中的 getParameterValuesname - a String containing the name of
the parameter whose value is requested
String objects
containing the parameter's valuesServletRequest.getParameter(java.lang.String)public String getPathInfo()
HttpServletRequest 复制的描述This method returns null if there
was no extra path information.
Same as the value of the CGI variable PATH_INFO.
HttpServletRequest 中的 getPathInfoString, decoded by the
web container, specifying
extra path information that comes
after the servlet path but before
the query string in the request URL;
or null if the URL does not have
any extra path informationpublic String getPathTranslated()
HttpServletRequest 复制的描述If the URL does not have any extra path information,
this method returns null or the servlet container
cannot translate the virtual path to a real path for any reason
(such as when the web application is executed from an archive).
The web container does not decode this string.
HttpServletRequest 中的 getPathTranslatedString specifying the
real path, or null if
the URL does not have any extra path
informationpublic String getProtocol()
ServletRequest 复制的描述SERVER_PROTOCOL.
ServletRequest 中的 getProtocolString containing the protocol
name and version numberpublic String getQueryEncoding()
public String getQueryString()
HttpServletRequest 复制的描述null
if the URL does not have a query string. Same as the value
of the CGI variable QUERY_STRING.
HttpServletRequest 中的 getQueryStringString containing the query
string or null if the URL
contains no query string. The value is not
decoded by the container.
public BufferedReader getReader()
throws IOException
ServletRequest 复制的描述BufferedReader. The reader translates the character
data according to the character encoding used on the body.
Either this method or ServletRequest.getInputStream() may be called to read the
body, not both.
ServletRequest 中的 getReaderBufferedReader
containing the body of the request
UnsupportedEncodingException - if the character set encoding
used is not supported and the
text cannot be decoded
IOException - if an input or output exception occurredServletRequest.getInputStream()public String getRealPath(String path)
ServletRequest 中的 getRealPathpublic String getRemoteAddr()
ServletRequest 复制的描述REMOTE_ADDR.
ServletRequest 中的 getRemoteAddrString containing the
IP address of the client that sent the requestpublic String getRemoteHost()
ServletRequest 复制的描述REMOTE_HOST.
ServletRequest 中的 getRemoteHostString containing the fully
qualified name of the clientpublic int getRemotePort()
ServletRequest 复制的描述
ServletRequest 中的 getRemotePortpublic String getRemoteUser()
HttpServletRequest 复制的描述null if the user
has not been authenticated.
Whether the user name is sent with each subsequent request
depends on the browser and type of authentication. Same as the
value of the CGI variable REMOTE_USER.
HttpServletRequest 中的 getRemoteUserString specifying the login
of the user making this request, or null
if the user login is not knownpublic RequestDispatcher getRequestDispatcher(String path)
ServletRequest 复制的描述RequestDispatcher object that acts as a wrapper for
the resource located at the given path.
A RequestDispatcher object can be used to forward
a request to the resource or to include the resource in a response.
The resource can be dynamic or static.
The pathname specified may be relative, although it cannot extend
outside the current servlet context. If the path begins with
a "/" it is interpreted as relative to the current context root.
This method returns null if the servlet container
cannot return a RequestDispatcher.
The difference between this method and ServletContext.getRequestDispatcher(java.lang.String) is that this method can take a
relative path.
ServletRequest 中的 getRequestDispatcherpath - a String specifying the pathname
to the resource. If it is relative, it must be
relative against the current servlet.
RequestDispatcher object
that acts as a wrapper for the resource
at the specified path, or null
if the servlet container cannot return a
RequestDispatcherRequestDispatcher,
ServletContext.getRequestDispatcher(java.lang.String)public String getRequestedSessionId()
HttpServletRequest 复制的描述null.
HttpServletRequest 中的 getRequestedSessionIdString specifying the session
ID, or null if the request did
not specify a session IDHttpServletRequest.isRequestedSessionIdValid()public String getRequestURI()
HttpServletRequest 复制的描述| First line of HTTP request | Returned Value | |
|---|---|---|
| POST /some/path.html HTTP/1.1 | /some/path.html | |
| GET http://foo.bar/a.html HTTP/1.0 | /a.html | |
| HEAD /xyz?a=b HTTP/1.1 | /xyz |
To reconstruct an URL with a scheme and host, use
HttpUtils.getRequestURL(javax.servlet.http.HttpServletRequest).
HttpServletRequest 中的 getRequestURIString containing
the part of the URL from the
protocol name up to the query stringHttpUtils.getRequestURL(javax.servlet.http.HttpServletRequest)public StringBuffer getRequestURL()
HttpServletRequest 复制的描述If this request has been forwarded using
RequestDispatcher.forward(javax.servlet.ServletRequest, javax.servlet.ServletResponse), the server path in the
reconstructed URL must reflect the path used to obtain the
RequestDispatcher, and not the server path specified by the client.
Because this method returns a StringBuffer,
not a string, you can modify the URL easily, for example,
to append query parameters.
This method is useful for creating redirect messages and for reporting errors.
HttpServletRequest 中的 getRequestURLStringBuffer object containing
the reconstructed URLpublic Response getResponse()
public StringBuilder getRootURL()
Because this method returns a StringBuffer, not a string, you can modify the URL easily, for example, to append path and query parameters.
This method is useful for creating redirect messages and for reporting errors.
public String getScheme()
ServletRequest 复制的描述http, https, or ftp.
Different schemes have different rules for constructing URLs,
as noted in RFC 1738.
ServletRequest 中的 getSchemeString containing the name
of the scheme used to make this requestpublic String getServerName()
ServletRequest 复制的描述Host
header value, if any, or the resolved server name, or the server IP
address.
ServletRequest 中的 getServerNameString containing the name
of the serverpublic int getServerPort()
ServletRequest 复制的描述Host
header value, if any, or the server port where the client connection
was accepted on.
ServletRequest 中的 getServerPortpublic ServletContext getServletContext()
ServletRequest 复制的描述
ServletRequest 中的 getServletContextpublic String getServletName()
public String getServletPath()
HttpServletRequest 复制的描述This method will return an empty string ("") if the servlet used to process this request was matched using the "/*" pattern.
HttpServletRequest 中的 getServletPathString containing
the name or path of the servlet being
called, as specified in the request URL,
decoded, or an empty string if the servlet
used to process the request is matched
using the "/*" pattern.public ServletResponse getServletResponse()
public HttpSession getSession()
HttpServletRequest 复制的描述
HttpServletRequest 中的 getSessionHttpSession associated
with this requestHttpServletRequest.getSession(boolean)public HttpSession getSession(boolean create)
HttpServletRequest 复制的描述HttpSession
associated with this request or, if there is no
current session and create is true, returns
a new session.
If create is false
and the request has no valid HttpSession,
this method returns null.
To make sure the session is properly maintained, you must call this method before the response is committed. If the container is using cookies to maintain session integrity and is asked to create a new session when the response is committed, an IllegalStateException is thrown.
HttpServletRequest 中的 getSessioncreate - true to create
a new session for this request if necessary;
false to return null
if there's no current session
HttpSession associated
with this request or null if
create is false
and the request has no valid sessionHttpServletRequest.getSession()public SessionManager getSessionManager()
public long getTimeStamp()
public Buffer getTimeStampBuffer()
public HttpURI getUri()
public UserIdentity getUserIdentity()
public UserIdentity getResolvedUserIdentity()
Authentication is not Authentication.User (eg.
Authentication.Deferred).public UserIdentity.Scope getUserIdentityScope()
public Principal getUserPrincipal()
HttpServletRequest 复制的描述java.security.Principal object containing
the name of the current authenticated user. If the user has not been
authenticated, the method returns null.
HttpServletRequest 中的 getUserPrincipaljava.security.Principal containing
the name of the user making this request;
null if the user has not been
authenticatedpublic long getDispatchTime()
public boolean isHandled()
public boolean isAsyncStarted()
ServletRequest 复制的描述A ServletRequest is put into asynchronous mode by calling
ServletRequest.startAsync() or
ServletRequest.startAsync(ServletRequest,ServletResponse) on it.
This method returns false if this request was
put into asynchronous mode, but has since been dispatched using
one of the AsyncContext.dispatch() methods or released
from asynchronous mode via a call to AsyncContext.complete().
ServletRequest 中的 isAsyncStartedpublic boolean isAsyncSupported()
ServletRequest 复制的描述Asynchronous operation is disabled for this request if this request is within the scope of a filter or servlet that has not been annotated or flagged in the deployment descriptor as being able to support asynchronous handling.
ServletRequest 中的 isAsyncSupportedpublic boolean isRequestedSessionIdFromCookie()
HttpServletRequest 复制的描述
HttpServletRequest 中的 isRequestedSessionIdFromCookietrue if the session ID
came in as a
cookie; otherwise, falseHttpServletRequest.getSession(boolean)public boolean isRequestedSessionIdFromUrl()
HttpServletRequest 中的 isRequestedSessionIdFromUrlpublic boolean isRequestedSessionIdFromURL()
HttpServletRequest 复制的描述
HttpServletRequest 中的 isRequestedSessionIdFromURLtrue if the session ID
came in as part of a URL; otherwise,
falseHttpServletRequest.getSession(boolean)public boolean isRequestedSessionIdValid()
HttpServletRequest 复制的描述If the client did not specify any session ID, this method returns
false.
HttpServletRequest 中的 isRequestedSessionIdValidtrue if this
request has an id for a valid session
in the current session context;
false otherwiseHttpServletRequest.getRequestedSessionId(),
HttpServletRequest.getSession(boolean),
HttpSessionContextpublic boolean isSecure()
ServletRequest 复制的描述
ServletRequest 中的 isSecurepublic boolean isUserInRole(String role)
HttpServletRequest 复制的描述false.
HttpServletRequest 中的 isUserInRolerole - a String specifying the name
of the role
boolean indicating whether
the user making this request belongs to a given role;
false if the user has not been
authenticatedpublic HttpSession recoverNewSession(Object key)
protected void recycle()
public void removeAttribute(String name)
ServletRequest 复制的描述Attribute names should follow the same conventions as
package names. Names beginning with java.*,
javax.*, and com.sun.*, are
reserved for use by Sun Microsystems.
ServletRequest 中的 removeAttributename - a String specifying
the name of the attribute to removepublic void removeEventListener(EventListener listener)
public void saveNewSession(Object key,
HttpSession session)
public void setAsyncSupported(boolean supported)
public void setAttribute(String name,
Object value)
ServletRequest 复制的描述RequestDispatcher.
Attribute names should follow the same conventions as
package names. Names beginning with java.*,
javax.*, and com.sun.*, are
reserved for use by Sun Microsystems.
If the object passed in is null, the effect is the same as
calling ServletRequest.removeAttribute(java.lang.String).
It is warned that when the request is dispatched from the
servlet resides in a different web application by
RequestDispatcher, the object set by this method
may not be correctly retrieved in the caller servlet.
ServletRequest 中的 setAttributename - a String specifying
the name of the attributevalue - the Object to be storedpublic void setAttributes(Attributes attributes)
public void setAuthentication(Authentication authentication)
authentication - the authentication to set
public void setCharacterEncoding(String encoding)
throws UnsupportedEncodingException
ServletRequest 复制的描述
ServletRequest 中的 setCharacterEncodingencoding - String containing the name of
the character encoding.
UnsupportedEncodingException - if this
ServletRequest is still in a state where a
character encoding may be set, but the specified
encoding is invalidpublic void setCharacterEncodingUnchecked(String encoding)
protected final void setConnection(AbstractHttpConnection connection)
public void setContentType(String contentType)
public void setContext(ContextHandler.Context context)
context - context objectpublic boolean takeNewContext()
takeNewContext() since the last
setContext(org.eclipse.jetty.server.handler.ContextHandler.Context) call.public void setContextPath(String contextPath)
HttpServletRequest.getContextPath()public void setCookies(Cookie[] cookies)
cookies - The cookies to set.public void setDispatcherType(DispatcherType type)
public void setHandled(boolean h)
public void setMethod(String method)
method - The method to set.public void setParameters(MultiMap<String> parameters)
parameters - The parameters to set.public void setPathInfo(String pathInfo)
pathInfo - The pathInfo to set.public void setProtocol(String protocol)
protocol - The protocol to set.public void setQueryEncoding(String queryEncoding)
queryEncoding - public void setQueryString(String queryString)
queryString - The queryString to set.public void setRemoteAddr(String addr)
addr - The address to set.public void setRemoteHost(String host)
host - The host to set.public void setRequestedSessionId(String requestedSessionId)
requestedSessionId - The requestedSessionId to set.public void setRequestedSessionIdFromCookie(boolean requestedSessionIdCookie)
requestedSessionIdCookie - The requestedSessionIdCookie to set.public void setRequestURI(String requestURI)
requestURI - The requestURI to set.public void setScheme(String scheme)
scheme - The scheme to set.public void setServerName(String host)
host - The host to set.public void setServerPort(int port)
port - The port to set.public void setServletPath(String servletPath)
servletPath - The servletPath to set.public void setSession(HttpSession session)
session - The session to set.public void setSessionManager(SessionManager sessionManager)
sessionManager - The sessionManager to set.public void setTimeStamp(long ts)
public void setUri(HttpURI uri)
uri - The uri to set.public void setUserIdentityScope(UserIdentity.Scope scope)
public void setDispatchTime(long value)
value - timestamp
public AsyncContext startAsync()
throws IllegalStateException
ServletRequest 复制的描述AsyncContext with the original (unwrapped) ServletRequest
and ServletResponse objects.
Calling this method will cause committal of the associated
response to be delayed until AsyncContext.complete() is
called on the returned AsyncContext, or the asynchronous
operation has timed out.
Calling AsyncContext.hasOriginalRequestAndResponse() on
the returned AsyncContext will return true. Any filters
invoked in the outbound direction after this request was put
into asynchronous mode may use this as an indication that any request
and/or response wrappers that they added during their inbound
invocation need not stay around for the duration of the asynchronous
operation, and therefore any of their associated resources may be
released.
This method clears the list of AsyncListener instances
(if any) that were registered with the AsyncContext returned by the
previous call to one of the startAsync methods, after calling each
AsyncListener at its onStartAsync
method.
Subsequent invocations of this method, or its overloaded variant, will return the same AsyncContext instance, reinitialized as appropriate.
ServletRequest 中的 startAsyncIllegalStateException - if this request is within the scope of
a filter or servlet that does not support asynchronous operations
(that is, ServletRequest.isAsyncSupported() returns false),
or if this method is called again without any asynchronous dispatch
(resulting from one of the AsyncContext.dispatch() methods),
is called outside the scope of any such dispatch, or is called again
within the scope of the same dispatch, or if the response has
already been closed
public AsyncContext startAsync(ServletRequest servletRequest,
ServletResponse servletResponse)
throws IllegalStateException
ServletRequest 复制的描述AsyncContext with the given request and response objects.
The ServletRequest and ServletResponse arguments must be
the same instances, or instances of ServletRequestWrapper and
ServletResponseWrapper that wrap them, that were passed to the
service method of the Servlet or the
doFilter method of the Filter, respectively,
in whose scope this method is being called.
Calling this method will cause committal of the associated
response to be delayed until AsyncContext.complete() is
called on the returned AsyncContext, or the asynchronous
operation has timed out.
Calling AsyncContext.hasOriginalRequestAndResponse() on
the returned AsyncContext will return false,
unless the passed in ServletRequest and ServletResponse arguments
are the original ones or do not carry any application-provided wrappers.
Any filters invoked in the outbound direction after this
request was put into asynchronous mode may use this as an indication
that some of the request and/or response wrappers that they added
during their inbound invocation may need to stay in place for
the duration of the asynchronous operation, and their associated
resources may not be released.
A ServletRequestWrapper applied during the inbound
invocation of a filter may be released by the outbound
invocation of the filter only if the given servletRequest,
which is used to initialize the AsyncContext and will be returned by
a call to AsyncContext.getRequest(), does not contain said
ServletRequestWrapper. The same holds true for ServletResponseWrapper
instances.
This method clears the list of AsyncListener instances
(if any) that were registered with the AsyncContext returned by the
previous call to one of the startAsync methods, after calling each
AsyncListener at its onStartAsync
method.
Subsequent invocations of this method, or its zero-argument variant, will return the same AsyncContext instance, reinitialized as appropriate. If a call to this method is followed by a call to its zero-argument variant, the specified (and possibly wrapped) request and response objects will remain locked in on the returned AsyncContext.
ServletRequest 中的 startAsyncservletRequest - the ServletRequest used to initialize the
AsyncContextservletResponse - the ServletResponse used to initialize the
AsyncContext
IllegalStateException - if this request is within the scope of
a filter or servlet that does not support asynchronous operations
(that is, ServletRequest.isAsyncSupported() returns false),
or if this method is called again without any asynchronous dispatch
(resulting from one of the AsyncContext.dispatch() methods),
is called outside the scope of any such dispatch, or is called again
within the scope of the same dispatch, or if the response has
already been closedpublic String toString()
Object 中的 toString
public boolean authenticate(HttpServletResponse response)
throws IOException,
ServletException
HttpServletRequest 复制的描述ServletContext to authenticate the user making
this request.
This method may modify and commit the argument
HttpServletResponse.
HttpServletRequest 中的 authenticateresponse - The HttpServletResponse
associated with this HttpServletRequest
true when non-null values were or have been
established as the values returned by getUserPrincipal,
getRemoteUser, and getAuthType. Return
false if authentication is incomplete and the underlying
login mechanism has committed, in the response, the message (e.g.,
challenge) and HTTP status code to be returned to the user.
IOException - if an input or output error occurred while
reading from this request or writing to the given response
ServletException - if the authentication failed and
the caller is responsible for handling the error (i.e., the
underlying login mechanism did NOT establish the message and
HTTP status code to be returned to the user)
public Part getPart(String name)
throws IOException,
ServletException
HttpServletRequest 复制的描述Part with the given name.
HttpServletRequest 中的 getPartname - the name of the requested Part
IOException - if an I/O error occurred during the retrieval
of the requested Part
ServletException - if this request is not of type
multipart/form-dataMultipartConfig.maxFileSize(),
MultipartConfig.maxRequestSize()
public Collection<Part> getParts()
throws IOException,
ServletException
HttpServletRequest 复制的描述Part components of this request, provided
that it is of type multipart/form-data.
If this request is of type multipart/form-data, but does not contain any Part components, the returned Collection will be empty.
Any changes to the returned Collection must not
affect this HttpServletRequest.
HttpServletRequest 中的 getPartsCollection of the
Part components of this request
IOException - if an I/O error occurred during the retrieval
of the Part components of this request
ServletException - if this request is not of type
multipart/form-dataMultipartConfig.maxFileSize(),
MultipartConfig.maxRequestSize()
public void login(String username,
String password)
throws ServletException
HttpServletRequest 复制的描述ServletContext.
This method returns without throwing a ServletException
when the login mechanism configured for the ServletContext
supports username password validation, and when, at the time of the
call to login, the identity of the caller of the request had
not been established (i.e, all of getUserPrincipal,
getRemoteUser, and getAuthType return null),
and when validation of the provided credentials is successful.
Otherwise, this method throws a ServletException as
described below.
When this method returns without throwing an exception, it must
have established non-null values as the values returned by
getUserPrincipal, getRemoteUser, and
getAuthType.
HttpServletRequest 中的 loginusername - The String value corresponding to
the login identifier of the user.password - The password String corresponding
to the identified user.
ServletException - if the configured login mechanism
does not support username
password authentication, or if a
non-null caller identity had
already been established (prior
to the call to login), or if
validation of the provided
username and password fails.
public void logout()
throws ServletException
HttpServletRequest 复制的描述null as the value returned when
getUserPrincipal, getRemoteUser,
and getAuthType is called on the request.
HttpServletRequest 中的 logoutServletException - if logout failspublic void mergeQueryString(String query)
setParameters(MultiMap) and
setQueryString(String) are called with the result. The merge is according to the rules of the servlet dispatch forward method.
query - The query string to merge into the request.
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||