|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.context.support.ApplicationObjectSupport
org.springframework.web.context.support.WebApplicationObjectSupport
org.springframework.web.servlet.view.AbstractView
org.springframework.web.servlet.view.AbstractUrlBasedView
org.springframework.web.servlet.view.RedirectView
public class RedirectView
View that redirects to an absolute, context relative, or current request relative URL, exposing all model attributes as HTTP query parameters.
A URL for this view is supposed to be a HTTP redirect URL, i.e.
suitable for HttpServletResponse's sendRedirect
method, which
is what actually does the redirect if the HTTP 1.0 flag is on, or via sending
back an HTTP 303 code - if the HTTP 1.0 compatibility flag is off.
Note that while the default value for the "contextRelative" flag is off, you will probably want to almost always set it to true. With the flag off, URLs starting with "/" are considered relative to the web server root, while with the flag on, they are considered relative to the web application root. Since most web apps will never know or care what their context path actually is, they are much better off setting this flag to true, and submitting paths which are to be considered relative to the web application root.
Note that in a Servlet 2.2 environment, i.e. a servlet container which
is only compliant to the limits of this spec, this class will probably fail
when feeding in URLs which are not fully absolute, or relative to the current
request (no leading "/"), as these are the only two types of URL that
sendRedirect
supports in a Servlet 2.2 environment.
setContextRelative(boolean)
,
setHttp10Compatible(boolean)
,
HttpServletResponse.sendRedirect(java.lang.String)
Field Summary | |
---|---|
static String |
DEFAULT_ENCODING_SCHEME
|
Fields inherited from class org.springframework.web.servlet.view.AbstractView |
---|
DEFAULT_CONTENT_TYPE |
Fields inherited from class org.springframework.context.support.ApplicationObjectSupport |
---|
logger |
Constructor Summary | |
---|---|
RedirectView()
Constructor for use as a bean. |
|
RedirectView(String url)
Create a new RedirectView with the given URL. |
|
RedirectView(String url,
boolean contextRelative)
Create a new RedirectView with the given URL. |
|
RedirectView(String url,
boolean contextRelative,
boolean http10Compatible)
Create a new RedirectView with the given URL. |
Method Summary | |
---|---|
protected void |
appendQueryProperties(StringBuffer targetUrl,
Map model,
String encodingScheme)
Append query properties to the redirect URL. |
protected Map |
queryProperties(Map model)
Determine name-value pairs for query strings, which will be stringified, URL-encoded and formatted by appendQueryProperties. |
protected void |
renderMergedOutputModel(Map model,
HttpServletRequest request,
HttpServletResponse response)
Convert model to request parameters and redirect to the given URL. |
protected void |
sendRedirect(HttpServletRequest request,
HttpServletResponse response,
String targetUrl,
boolean http10Compatible)
Send a redirect back to the HTTP client |
void |
setContextRelative(boolean contextRelative)
Set whether to interpret a given URL that starts with a slash ("/") as relative to the current ServletContext, i.e. as relative to the web application root. |
void |
setEncodingScheme(String encodingScheme)
Set the encoding scheme for this view. |
void |
setHttp10Compatible(boolean http10Compatible)
Set whether to stay compatible with HTTP 1.0 clients. |
protected String |
urlEncode(String input,
String encodingScheme)
URL-encode the given input String with the given encoding scheme. |
Methods inherited from class org.springframework.web.servlet.view.AbstractUrlBasedView |
---|
afterPropertiesSet, getUrl, setUrl, toString |
Methods inherited from class org.springframework.web.servlet.view.AbstractView |
---|
addStaticAttribute, createRequestContext, exposeModelAsRequestAttributes, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getStaticAttributes, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setRequestContextAttribute |
Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport |
---|
getServletContext, getTempDir, getWebApplicationContext, isContextRequired, setServletContext |
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport |
---|
getApplicationContext, getMessageSourceAccessor, initApplicationContext, requiredContextClass, setApplicationContext |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String DEFAULT_ENCODING_SCHEME
Constructor Detail |
---|
public RedirectView()
public RedirectView(String url)
The given URL will be considered as relative to the web server, not as relative to the current ServletContext.
url
- the URL to redirect toRedirectView(String, boolean)
public RedirectView(String url, boolean contextRelative)
url
- the URL to redirect tocontextRelative
- whether to interpret the given URL as
relative to the current ServletContextpublic RedirectView(String url, boolean contextRelative, boolean http10Compatible)
url
- the URL to redirect tocontextRelative
- whether to interpret the given URL as
relative to the current ServletContexthttp10Compatible
- whether to stay compatible with HTTP 1.0 clientsMethod Detail |
---|
public void setContextRelative(boolean contextRelative)
Default is "false": A URL that starts with a slash will be interpreted as absolute, i.e. taken as-is. If true, the context path will be prepended to the URL in such a case.
HttpServletRequest.getContextPath()
public void setHttp10Compatible(boolean http10Compatible)
In the default implementation, this will enforce HTTP status code 302
in any case, i.e. delegate to HttpServletResponse.sendRedirect
.
Turning this off will send HTTP status code 303, which is the correct
code for HTTP 1.1 clients, but not understood by HTTP 1.0 clients.
Many HTTP 1.1 clients treat 302 just like 303, not making any difference. However, some clients depend on 303 when redirecting after a POST request; turn this flag off in such a scenario.
HttpServletResponse.sendRedirect(java.lang.String)
public void setEncodingScheme(String encodingScheme)
protected final void renderMergedOutputModel(Map model, HttpServletRequest request, HttpServletResponse response) throws IOException
renderMergedOutputModel
in class AbstractView
model
- combined output Map (never null
),
with dynamic values taking precedence over static attributesrequest
- current HTTP requestresponse
- current HTTP response
IOException
appendQueryProperties(java.lang.StringBuffer, java.util.Map, java.lang.String)
,
sendRedirect(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String, boolean)
protected void appendQueryProperties(StringBuffer targetUrl, Map model, String encodingScheme) throws UnsupportedEncodingException
targetUrl
- the StringBuffer to append the properties tomodel
- Map that contains model attributesencodingScheme
- the encoding scheme to use
UnsupportedEncodingException
- if string encoding failedqueryProperties(java.util.Map)
protected String urlEncode(String input, String encodingScheme) throws UnsupportedEncodingException
Default implementation uses URLEncoder.encode(input, enc)
on JDK 1.4+, falling back to URLEncoder.encode(input)
(which uses the platform default encoding) on JDK 1.3.
input
- the unencoded input StringencodingScheme
- the encoding scheme
UnsupportedEncodingException
- if thrown by the JDK URLEncoderURLEncoder.encode(String, String)
,
URLEncoder.encode(String)
protected Map queryProperties(Map model)
This implementation returns all model elements as-is.
appendQueryProperties(java.lang.StringBuffer, java.util.Map, java.lang.String)
protected void sendRedirect(HttpServletRequest request, HttpServletResponse response, String targetUrl, boolean http10Compatible) throws IOException
request
- current HTTP request (allows for reacting to request method)response
- current HTTP response (for sending response headers)targetUrl
- the target URL to redirect tohttp10Compatible
- whether to stay compatible with HTTP 1.0 clients
IOException
- if thrown by response methods
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |