Class ViewResolverRegistry
- java.lang.Object
- org.springframework.web.servlet.config.annotation.ViewResolverRegistry
public class ViewResolverRegistry extends Object
Assist with the configuration of a chain ofViewResolverinstances. This class is expected to be used viaWebMvcConfigurer.configureViewResolvers(org.springframework.web.servlet.config.annotation.ViewResolverRegistry).- Since:
- 4.1
- Author:
- Sebastien Deleuze, Rossen Stoyanchev
Constructor Summary
Constructors Constructor Description ViewResolverRegistry()Deprecated.ViewResolverRegistry(ContentNegotiationManager contentNegotiationManager, ApplicationContext context)Class constructor withContentNegotiationManagerandApplicationContext.
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidbeanName()Register a bean name view resolver that interprets view names as the names ofViewbeans.voidenableContentNegotiation(boolean useNotAcceptableStatus, View... defaultViews)Enable use of aContentNegotiatingViewResolverto front all other configured view resolvers and select among all selected Views based on media types requested by the client (e.g.voidenableContentNegotiation(View... defaultViews)Enable use of aContentNegotiatingViewResolverto front all other configured view resolvers and select among all selected Views based on media types requested by the client (e.g.UrlBasedViewResolverRegistrationfreeMarker()Register a FreeMarker view resolver with an empty default view name prefix and a default suffix of ".ftl".protected intgetOrder()protected List<ViewResolver>getViewResolvers()UrlBasedViewResolverRegistrationgroovy()Register a Groovy markup view resolver with an empty default view name prefix and a default suffix of ".tpl".protected booleanhasBeanOfType(Class<?> beanType)Deprecated.booleanhasRegistrations()Whether any view resolvers have been registered.UrlBasedViewResolverRegistrationjsp()Register JSP view resolver using a default view name prefix of "/WEB-INF/" and a default suffix of ".jsp".UrlBasedViewResolverRegistrationjsp(String prefix, String suffix)Register JSP view resolver with the specified prefix and suffix.voidorder(int order)ViewResolver's registered through this registry are encapsulated in an instance ofViewResolverCompositeand follow the order of registration.UrlBasedViewResolverRegistrationscriptTemplate()Register a script template view resolver with an empty default view name prefix and suffix.protected voidsetApplicationContext(ApplicationContext applicationContext)Deprecated.protected voidsetContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)Deprecated.UrlBasedViewResolverRegistrationtiles()Register Tiles 3.x view resolver.UrlBasedViewResolverRegistrationvelocity()Deprecated.as of Spring 4.3, in favor of FreeMarkervoidviewResolver(ViewResolver viewResolver)Register aViewResolverbean instance.
Constructor Detail
ViewResolverRegistry
public ViewResolverRegistry(ContentNegotiationManager contentNegotiationManager, ApplicationContext context)
Class constructor withContentNegotiationManagerandApplicationContext.- Since:
- 4.3.12
ViewResolverRegistry
@Deprecated public ViewResolverRegistry()
Deprecated.
Method Detail
hasRegistrations
public boolean hasRegistrations()
Whether any view resolvers have been registered.
enableContentNegotiation
public void enableContentNegotiation(View... defaultViews)
Enable use of aContentNegotiatingViewResolverto front all other configured view resolvers and select among all selected Views based on media types requested by the client (e.g. in the Accept header).If invoked multiple times the provided default views will be added to any other default views that may have been configured already.
enableContentNegotiation
public void enableContentNegotiation(boolean useNotAcceptableStatus, View... defaultViews)
Enable use of aContentNegotiatingViewResolverto front all other configured view resolvers and select among all selected Views based on media types requested by the client (e.g. in the Accept header).If invoked multiple times the provided default views will be added to any other default views that may have been configured already.
jsp
public UrlBasedViewResolverRegistration jsp()
Register JSP view resolver using a default view name prefix of "/WEB-INF/" and a default suffix of ".jsp".When this method is invoked more than once, each call will register a new ViewResolver instance. Note that since it's not easy to determine if a JSP exists without forwarding to it, using multiple JSP-based view resolvers only makes sense in combination with the "viewNames" property on the resolver indicating which view names are handled by which resolver.
jsp
public UrlBasedViewResolverRegistration jsp(String prefix, String suffix)
Register JSP view resolver with the specified prefix and suffix.When this method is invoked more than once, each call will register a new ViewResolver instance. Note that since it's not easy to determine if a JSP exists without forwarding to it, using multiple JSP-based view resolvers only makes sense in combination with the "viewNames" property on the resolver indicating which view names are handled by which resolver.
tiles
public UrlBasedViewResolverRegistration tiles()
Register Tiles 3.x view resolver.Note that you must also configure Tiles by adding a
TilesConfigurerbean.
freeMarker
public UrlBasedViewResolverRegistration freeMarker()
Register a FreeMarker view resolver with an empty default view name prefix and a default suffix of ".ftl".Note that you must also configure FreeMarker by adding a
FreeMarkerConfigurerbean.
velocity
@Deprecated public UrlBasedViewResolverRegistration velocity()
Deprecated.as of Spring 4.3, in favor of FreeMarkerRegister Velocity view resolver with an empty default view name prefix and a default suffix of ".vm".Note that you must also configure Velocity by adding a
VelocityConfigurerbean.
groovy
public UrlBasedViewResolverRegistration groovy()
Register a Groovy markup view resolver with an empty default view name prefix and a default suffix of ".tpl".
scriptTemplate
public UrlBasedViewResolverRegistration scriptTemplate()
Register a script template view resolver with an empty default view name prefix and suffix.- Since:
- 4.2
beanName
public void beanName()
Register a bean name view resolver that interprets view names as the names ofViewbeans.
viewResolver
public void viewResolver(ViewResolver viewResolver)
Register aViewResolverbean instance. This may be useful to configure a custom (or 3rd party) resolver implementation. It may also be used as an alternative to other registration methods in this class when they don't expose some more advanced property that needs to be set.
order
public void order(int order)
ViewResolver's registered through this registry are encapsulated in an instance ofViewResolverCompositeand follow the order of registration. This property determines the order of the ViewResolverComposite itself relative to any additional ViewResolver's (not registered here) present in the Spring configurationBy default this property is not set, which means the resolver is ordered at
Ordered.LOWEST_PRECEDENCEunless content negotiation is enabled in which case the order (if not set explicitly) is changed toOrdered.HIGHEST_PRECEDENCE.
getOrder
protected int getOrder()
getViewResolvers
protected List<ViewResolver> getViewResolvers()
hasBeanOfType
@Deprecated protected boolean hasBeanOfType(Class<?> beanType)
Deprecated.
setContentNegotiationManager
@Deprecated protected void setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Deprecated.
setApplicationContext
@Deprecated protected void setApplicationContext(ApplicationContext applicationContext)
Deprecated.