Class ViewResolversBeanDefinitionParser
java.lang.Object
org.springframework.web.servlet.config.ViewResolversBeanDefinitionParser
- All Implemented Interfaces:
BeanDefinitionParser
Parses the
view-resolvers
MVC namespace element and registers
ViewResolver
bean definitions.
All registered resolvers are wrapped in a single (composite) ViewResolver with its order property set to 0 so that other external resolvers may be ordered before or after it.
When content negotiation is enabled the order property is set to highest priority instead with the ContentNegotiatingViewResolver encapsulating all other registered view resolver instances. That way the resolvers registered through the MVC namespace form a self-encapsulated resolver chain.
- Since:
- 4.1
- Author:
- Sivaprasad Valluru, Sebastien Deleuze, Rossen Stoyanchev
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The bean name used for theViewResolverComposite
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionparse
(Element element, ParserContext context) Parse the specifiedElement
and register the resultingBeanDefinition(s)
with theBeanDefinitionRegistry
embedded in the suppliedParserContext
.
-
Field Details
-
VIEW_RESOLVER_BEAN_NAME
The bean name used for theViewResolverComposite
.- See Also:
-
-
Constructor Details
-
ViewResolversBeanDefinitionParser
public ViewResolversBeanDefinitionParser()
-
-
Method Details
-
parse
Description copied from interface:BeanDefinitionParser
Parse the specifiedElement
and register the resultingBeanDefinition(s)
with theBeanDefinitionRegistry
embedded in the suppliedParserContext
.Implementations must return the primary
BeanDefinition
that results from the parse if they will ever be used in a nested fashion (for example as an inner tag in a<property/>
tag). Implementations may returnnull
if they will not be used in a nested fashion.- Specified by:
parse
in interfaceBeanDefinitionParser
- Parameters:
element
- the element that is to be parsed into one or moreBeanDefinitions
context
- the object encapsulating the current state of the parsing process; provides access to aBeanDefinitionRegistry
- Returns:
- the primary
BeanDefinition
-