Class ContentNegotiatingViewResolver
- All Implemented Interfaces:
- Aware,- InitializingBean,- ApplicationContextAware,- Ordered,- ServletContextAware,- ViewResolver
ViewResolver that resolves a view based on the request file name
 or Accept header.
 The ContentNegotiatingViewResolver does not resolve views itself, but delegates to
 other ViewResolvers. By default, these other view resolvers are picked up automatically
 from the application context, though they can also be set explicitly by using the
 viewResolvers property. Note that in order for this
 view resolver to work properly, the order property needs to be set to a higher
 precedence than the others (the default is Ordered.HIGHEST_PRECEDENCE).
 
This view resolver uses the requested media type to select a suitable
 View for a request. The requested media type is determined through the configured
 ContentNegotiationManager. Once the requested media type has been determined, this resolver
 queries each delegate view resolver for a View and determines if the requested media type
 is compatible with the view's
 content type). The most compatible view is returned.
 
Additionally, this view resolver exposes the defaultViews property,
 allowing you to override the views provided by the view resolvers. Note that these default views are
 offered as candidates, and still need have the content type requested (via file extension, parameter,
 or Accept header, described above).
 
For example, if the request path is /view.html, this view resolver will look for a view
 that has the text/html content type (based on the html file extension). A request
 for /view with a text/html request Accept header has the same result.
- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller, Rossen Stoyanchev
- See Also:
- 
Field SummaryFields inherited from class org.springframework.context.support.ApplicationObjectSupportloggerFields inherited from interface org.springframework.core.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.Return theContentNegotiationManagerto use to determine requested media types.getMediaTypes(HttpServletRequest request) Determines the list ofMediaTypefor the givenHttpServletRequest.intgetOrder()Get the order value of this object.protected voidinitServletContext(ServletContext servletContext) Subclasses may override this for custom initialization based on the ServletContext that this application object runs in.booleanWhether to return HTTP Status 406 if no suitable is found.resolveViewName(String viewName, Locale locale) Resolve the given view by name.voidsetContentNegotiationManager(ContentNegotiationManager contentNegotiationManager) Set theContentNegotiationManagerto use to determine requested media types.voidsetDefaultViews(List<View> defaultViews) Set the default views to use when a more specific view can not be obtained from theViewResolverchain.voidsetOrder(int order) voidsetUseNotAcceptableStatusCode(boolean useNotAcceptableStatusCode) Indicate whether a406 Not Acceptablestatus code should be returned if no suitable view can be found.voidsetViewResolvers(List<ViewResolver> viewResolvers) Sets the view resolvers to be wrapped by this view resolver.Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupportgetServletContext, getTempDir, getWebApplicationContext, initApplicationContext, isContextRequired, setServletContextMethods inherited from class org.springframework.context.support.ApplicationObjectSupportgetApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
- 
Constructor Details- 
ContentNegotiatingViewResolverpublic ContentNegotiatingViewResolver()
 
- 
- 
Method Details- 
setContentNegotiationManagerpublic void setContentNegotiationManager(@Nullable ContentNegotiationManager contentNegotiationManager) Set theContentNegotiationManagerto use to determine requested media types.If not set, ContentNegotiationManager's default constructor will be used, applying a HeaderContentNegotiationStrategy.- See Also:
 
- 
getContentNegotiationManagerReturn theContentNegotiationManagerto use to determine requested media types.- Since:
- 4.1.9
 
- 
setUseNotAcceptableStatusCodepublic void setUseNotAcceptableStatusCode(boolean useNotAcceptableStatusCode) Indicate whether a406 Not Acceptablestatus code should be returned if no suitable view can be found.Default is false, meaning that this view resolver returnsnullforresolveViewName(String, Locale)when an acceptable view cannot be found. This will allow for view resolvers chaining. When this property is set totrue,resolveViewName(String, Locale)will respond with a view that sets the response status to406 Not Acceptableinstead.
- 
isUseNotAcceptableStatusCodepublic boolean isUseNotAcceptableStatusCode()Whether to return HTTP Status 406 if no suitable is found.
- 
setDefaultViewsSet the default views to use when a more specific view can not be obtained from theViewResolverchain.
- 
getDefaultViews
- 
setViewResolversSets the view resolvers to be wrapped by this view resolver.If this property is not set, view resolvers will be detected automatically. 
- 
getViewResolvers
- 
setOrderpublic void setOrder(int order) 
- 
getOrderpublic int getOrder()Description copied from interface:OrderedGet the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet load-on-startupvalues).Same order values will result in arbitrary sort positions for the affected objects. 
- 
initServletContextDescription copied from class:WebApplicationObjectSupportSubclasses may override this for custom initialization based on the ServletContext that this application object runs in.The default implementation is empty. Called by WebApplicationObjectSupport.initApplicationContext(org.springframework.context.ApplicationContext)as well asWebApplicationObjectSupport.setServletContext(jakarta.servlet.ServletContext).- Overrides:
- initServletContextin class- WebApplicationObjectSupport
- Parameters:
- servletContext- the ServletContext that this application object runs in (never- null)
 
- 
afterPropertiesSetpublic void afterPropertiesSet()Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set. - Specified by:
- afterPropertiesSetin interface- InitializingBean
 
- 
resolveViewNameDescription copied from interface:ViewResolverResolve the given view by name.Note: To allow for ViewResolver chaining, a ViewResolver should return nullif a view with the given name is not defined in it. However, this is not required: Some ViewResolvers will always attempt to build View objects with the given name, unable to returnnull(rather throwing an exception when View creation failed).- Specified by:
- resolveViewNamein interface- ViewResolver
- Parameters:
- viewName- name of the view to resolve
- locale- the Locale in which to resolve the view. ViewResolvers that support internationalization should respect this.
- Returns:
- the View object, or nullif not found (optional, to allow for ViewResolver chaining)
- Throws:
- Exception- if the view cannot be resolved (typically in case of problems creating an actual View object)
 
- 
getMediaTypesDetermines the list ofMediaTypefor the givenHttpServletRequest.- Parameters:
- request- the current servlet request
- Returns:
- the list of media types requested, if any
 
 
-