Class UrlBasedViewResolver
- All Implemented Interfaces:
Aware
,InitializingBean
,ApplicationContextAware
,Ordered
,ViewResolver
- Direct Known Subclasses:
FreeMarkerViewResolver
,ScriptTemplateViewResolver
ViewResolver
that allows direct resolution of symbolic view names
to URLs without explicit mapping definitions. This is useful if symbolic names
match the names of view resources in a straightforward manner (i.e. the
symbolic name is the unique part of the resource's filename), without the need
for a dedicated mapping to be defined for each view.
Supports AbstractUrlBasedView
subclasses like
FreeMarkerView
.
The view class for all views generated by this resolver can be specified
via the "viewClass" property.
View names can either be resource URLs themselves, or get augmented by a specified prefix and/or suffix. Exporting an attribute that holds the RequestContext to all views is explicitly supported.
Example: prefix="templates/", suffix=".ftl", viewname="test" → "templates/test.ftl"
As a special feature, redirect URLs can be specified via the "redirect:" prefix. E.g.: "redirect:myAction" will trigger a redirect to the given URL, rather than resolution as standard view name. This is typically used for redirecting to a controller URL after finishing a form workflow.
Note: This class does not support localized resolution, i.e. resolving a symbolic view name to different resources depending on the current locale.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev, Sebastien Deleuze, Juergen Hoeller, Sam Brannen
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Prefix for special view names that specify a redirect URL (usually to a controller after a form has been submitted and processed).Fields inherited from class org.springframework.web.reactive.result.view.ViewResolverSupport
DEFAULT_CONTENT_TYPE
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.protected View
applyLifecycleMethods
(String viewName, AbstractUrlBasedView view) Apply the containingApplicationContext
's lifecycle methods to the givenView
instance, if such a context is available.protected boolean
Indicates whether thisViewResolver
can handle the supplied view name.protected AbstractUrlBasedView
createView
(String viewName) Creates a new View instance of the specified view class and configures it.Return the containingApplicationContext
, if any.protected String
Return the prefix that gets prepended to view names when building a URL.protected String
Return the name of theRequestContext
attribute for all views, if any.protected String
Return the suffix that gets appended to view names when building a URL.protected Class<?>
Return the view class to be used to create views.protected String[]
Return the view names (or name patterns) that can be handled by thisViewResolver
.protected AbstractUrlBasedView
Instantiate the specified view class.protected Class<?>
Return the required type of view for this resolver.reactor.core.publisher.Mono<View>
resolveViewName
(String viewName, Locale locale) Resolve the view name to a View instance.void
setApplicationContext
(ApplicationContext applicationContext) Accept the containingApplicationContext
, if any.void
Set the prefix that gets prepended to view names when building a URL.void
setRedirectViewProvider
(Function<String, RedirectView> redirectViewProvider) URL basedRedirectView
provider which can be used to provide, for example, redirect views with a custom default status code.void
setRequestContextAttribute
(String requestContextAttribute) Set the name of theRequestContext
attribute for all views.void
Set the suffix that gets appended to view names when building a URL.void
setViewClass
(Class<?> viewClass) Set the view class that should be used to create views.void
setViewNames
(String... viewNames) Set the view names (or name patterns) that can be handled by thisViewResolver
.Methods inherited from class org.springframework.web.reactive.result.view.ViewResolverSupport
getDefaultCharset, getOrder, getSupportedMediaTypes, setDefaultCharset, setOrder, setSupportedMediaTypes
-
Field Details
-
REDIRECT_URL_PREFIX
Prefix for special view names that specify a redirect URL (usually to a controller after a form has been submitted and processed). Such view names will not be resolved in the configured default way but rather be treated as special shortcut.- See Also:
-
-
Constructor Details
-
UrlBasedViewResolver
public UrlBasedViewResolver()
-
-
Method Details
-
setViewClass
Set the view class that should be used to create views.- Parameters:
viewClass
- a class that is assignable to the required view class (by default: AbstractUrlBasedView)- See Also:
-
getViewClass
Return the view class to be used to create views.- See Also:
-
setPrefix
Set the prefix that gets prepended to view names when building a URL. -
getPrefix
Return the prefix that gets prepended to view names when building a URL. -
setSuffix
Set the suffix that gets appended to view names when building a URL. -
getSuffix
Return the suffix that gets appended to view names when building a URL. -
setViewNames
Set the view names (or name patterns) that can be handled by thisViewResolver
. View names can contain simple wildcards such that 'my*', '*Report' and '*Repo*' will all match the view name 'myReport'. -
getViewNames
Return the view names (or name patterns) that can be handled by thisViewResolver
. -
setRedirectViewProvider
URL basedRedirectView
provider which can be used to provide, for example, redirect views with a custom default status code. -
setRequestContextAttribute
Set the name of theRequestContext
attribute for all views.- Parameters:
requestContextAttribute
- name of the RequestContext attribute- See Also:
-
getRequestContextAttribute
Return the name of theRequestContext
attribute for all views, if any. -
setApplicationContext
Accept the containingApplicationContext
, if any.To be used for the initialization of newly created
View
instances, applying lifecycle callbacks and providing access to the containing environment.- Specified by:
setApplicationContext
in interfaceApplicationContextAware
- Parameters:
applicationContext
- the ApplicationContext object to be used by this object- See Also:
-
getApplicationContext
Return the containingApplicationContext
, if any. -
afterPropertiesSet
Description copied from interface:InitializingBean
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.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:
afterPropertiesSet
in interfaceInitializingBean
- Throws:
Exception
- in the event of misconfiguration (such as failure to set an essential property) or if initialization fails for any other reason
-
resolveViewName
Description copied from interface:ViewResolver
Resolve the view name to a View instance.- Specified by:
resolveViewName
in interfaceViewResolver
- Parameters:
viewName
- the name of the view to resolvelocale
- the locale for the request- Returns:
- the resolved view or an empty stream
-
canHandle
Indicates whether thisViewResolver
can handle the supplied view name. If not, an empty result is returned. The default implementation checks against the configuredview names
.- Parameters:
viewName
- the name of the view to retrievelocale
- the Locale to retrieve the view for- Returns:
- whether this resolver applies to the specified view
- See Also:
-
requiredViewClass
Return the required type of view for this resolver. This implementation returnsAbstractUrlBasedView
.- See Also:
-
instantiateView
Instantiate the specified view class.The default implementation uses reflection to instantiate the class.
- Returns:
- a new instance of the view class
- Since:
- 5.3
- See Also:
-
createView
Creates a new View instance of the specified view class and configures it.Does not perform any lookup for pre-defined View instances.
Spring lifecycle methods as defined by the bean container do not have to be called here: They will be automatically applied afterwards, provided that an
ApplicationContext
is available.- Parameters:
viewName
- the name of the view to build- Returns:
- the View instance
- See Also:
-
applyLifecycleMethods
Apply the containingApplicationContext
's lifecycle methods to the givenView
instance, if such a context is available.- Parameters:
viewName
- the name of the viewview
- the freshly created View instance, pre-configured withAbstractUrlBasedView
's properties- Returns:
- the
View
instance to use (either the original one or a decorated variant) - See Also:
-