public class ViewResolversBeanDefinitionParser extends Object implements BeanDefinitionParser
view-resolvers
MVC namespace element and register
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 self-encapsulated resolver chain.
TilesConfigurerBeanDefinitionParser
,
FreeMarkerConfigurerBeanDefinitionParser
,
GroovyMarkupConfigurerBeanDefinitionParser
,
ScriptTemplateConfigurerBeanDefinitionParser
Modifier and Type | Field and Description |
---|---|
static String |
VIEW_RESOLVER_BEAN_NAME
The bean name used for the
ViewResolverComposite . |
Constructor and Description |
---|
ViewResolversBeanDefinitionParser() |
Modifier and Type | Method and Description |
---|---|
BeanDefinition |
parse(Element element,
ParserContext context)
Parse the specified
Element and register the resulting
BeanDefinition(s) with the
BeanDefinitionRegistry
embedded in the supplied ParserContext . |
public static final String VIEW_RESOLVER_BEAN_NAME
ViewResolverComposite
.public BeanDefinition parse(Element element, ParserContext context)
BeanDefinitionParser
Element
and register the resulting
BeanDefinition(s)
with the
BeanDefinitionRegistry
embedded in the supplied ParserContext
.
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 return
null
if they will not be used in a nested fashion.
parse
in interface BeanDefinitionParser
element
- the element that is to be parsed into one or more BeanDefinitions
context
- the object encapsulating the current state of the parsing process;
provides access to a BeanDefinitionRegistry
BeanDefinition