Class InternalResourceView
- All Implemented Interfaces:
Aware
,BeanNameAware
,InitializingBean
,ApplicationContextAware
,ServletContextAware
,View
- Direct Known Subclasses:
JstlView
RequestDispatcher
.
A URL for this view is supposed to specify a resource within the web
application, suitable for RequestDispatcher's forward
or
include
method.
If operating within an already included request or within a response that
has already been committed, this view will fall back to an include instead of
a forward. This can be enforced by calling response.flushBuffer()
(which will commit the response) before rendering the view.
Typical usage with InternalResourceViewResolver
looks as follows,
from the perspective of the DispatcherServlet context definition:
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"/> <property name="suffix" value=".jsp"/> </bean>Every view name returned from a handler will be translated to a JSP resource (for example: "myView" → "/WEB-INF/jsp/myView.jsp"), using this view class by default.
- Author:
- Rod Johnson, Juergen Hoeller, Rob Harrop
- See Also:
-
Field Summary
Fields inherited from class org.springframework.web.servlet.view.AbstractView
DEFAULT_CONTENT_TYPE
Fields inherited from class org.springframework.context.support.ApplicationObjectSupport
logger
Fields inherited from interface org.springframework.web.servlet.View
PATH_VARIABLES, RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE
-
Constructor Summary
ConstructorDescriptionConstructor for use as a bean.Create a new InternalResourceView with the given URL.InternalResourceView
(String url, boolean alwaysInclude) Create a new InternalResourceView with the given URL. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
exposeHelpers
(HttpServletRequest request) Expose helpers unique to each rendering operation.protected RequestDispatcher
getRequestDispatcher
(HttpServletRequest request, String path) Obtain the RequestDispatcher to use for the forward/include.protected boolean
An ApplicationContext is not strictly required for InternalResourceView.protected String
prepareForRendering
(HttpServletRequest request, HttpServletResponse response) Prepare for rendering, and determine the request dispatcher path to forward to (or to include).protected void
renderMergedOutputModel
(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) Render the internal resource given the specified model.void
setAlwaysInclude
(boolean alwaysInclude) Specify whether to always include the view rather than forward to it.void
setPreventDispatchLoop
(boolean preventDispatchLoop) Set whether to explicitly prevent dispatching back to the current handler path.protected boolean
useInclude
(HttpServletRequest request, HttpServletResponse response) Determine whether to use RequestDispatcher'sinclude
orforward
method.Methods inherited from class org.springframework.web.servlet.view.AbstractUrlBasedView
afterPropertiesSet, checkResource, getUrl, isUrlRequired, setUrl, toString
Methods inherited from class org.springframework.web.servlet.view.AbstractView
addStaticAttribute, createMergedOutputModel, createRequestContext, createTemporaryOutputStream, exposeModelAsRequestAttributes, formatViewName, generatesDownloadContent, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getRequestToExpose, getStaticAttributes, isExposePathVariables, prepareResponse, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setRequestContextAttribute, setResponseContentType, writeToResponse
Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, setServletContext
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
-
Constructor Details
-
InternalResourceView
public InternalResourceView()Constructor for use as a bean. -
InternalResourceView
Create a new InternalResourceView with the given URL.- Parameters:
url
- the URL to forward to- See Also:
-
InternalResourceView
Create a new InternalResourceView with the given URL.- Parameters:
url
- the URL to forward toalwaysInclude
- whether to always include the view rather than forward to it
-
-
Method Details
-
setAlwaysInclude
public void setAlwaysInclude(boolean alwaysInclude) Specify whether to always include the view rather than forward to it.Default is "false". Switch this flag on to enforce the use of a Servlet include, even if a forward would be possible.
-
setPreventDispatchLoop
public void setPreventDispatchLoop(boolean preventDispatchLoop) Set whether to explicitly prevent dispatching back to the current handler path.Default is "false". Switch this to "true" for convention-based views where a dispatch back to the current handler path is a definitive error.
-
isContextRequired
protected boolean isContextRequired()An ApplicationContext is not strictly required for InternalResourceView.- Overrides:
isContextRequired
in classWebApplicationObjectSupport
- See Also:
-
renderMergedOutputModel
protected void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response) throws ExceptionRender the internal resource given the specified model. This includes setting the model as request attributes.- Specified by:
renderMergedOutputModel
in classAbstractView
- Parameters:
model
- combined output Map (nevernull
), with dynamic values taking precedence over static attributesrequest
- current HTTP requestresponse
- current HTTP response- Throws:
Exception
- if rendering failed
-
exposeHelpers
Expose helpers unique to each rendering operation. This is necessary so that different rendering operations can't overwrite each other's contexts etc.Called by
renderMergedOutputModel(Map, HttpServletRequest, HttpServletResponse)
. The default implementation is empty. This method can be overridden to add custom helpers as request attributes.- Parameters:
request
- current HTTP request- Throws:
Exception
- if there's a fatal error while we're adding attributes- See Also:
-
prepareForRendering
protected String prepareForRendering(HttpServletRequest request, HttpServletResponse response) throws Exception Prepare for rendering, and determine the request dispatcher path to forward to (or to include).This implementation simply returns the configured URL. Subclasses can override this to determine a resource to render, typically interpreting the URL in a different manner.
- Parameters:
request
- current HTTP requestresponse
- current HTTP response- Returns:
- the request dispatcher path to use
- Throws:
Exception
- if preparations failed- See Also:
-
getRequestDispatcher
Obtain the RequestDispatcher to use for the forward/include.The default implementation simply calls
ServletRequest.getRequestDispatcher(String)
. Can be overridden in subclasses.- Parameters:
request
- current HTTP requestpath
- the target URL (as returned fromprepareForRendering(jakarta.servlet.http.HttpServletRequest, jakarta.servlet.http.HttpServletResponse)
)- Returns:
- a corresponding RequestDispatcher
-
useInclude
Determine whether to use RequestDispatcher'sinclude
orforward
method.Performs a check whether an include URI attribute is found in the request, indicating an include request, and whether the response has already been committed. In both cases, an include will be performed, as a forward is not possible anymore.
- Parameters:
request
- current HTTP requestresponse
- current HTTP response- Returns:
true
for include,false
for forward- See Also:
-