|
spring-webmvc | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.springframework.context.support.ApplicationObjectSupport
org.springframework.web.context.support.WebApplicationObjectSupport
org.springframework.web.servlet.view.AbstractCachingViewResolver
org.springframework.web.servlet.view.XmlViewResolver
public class XmlViewResolver
Implementation of ViewResolver that uses bean definitions in an XML file, specified by resource location. The file will typically be located in the WEB-INF directory; default is "/WEB-INF/views.xml".
This ViewResolver does not support internationalization. Consider ResourceBundleViewResolver if you need to apply different view resources per locale.
Note: This ViewResolver implements the Ordered interface to allow for flexible participation in ViewResolver chaining. For example, some special views could be defined via this ViewResolver (giving it 0 as "order" value), while all remaining views could be resolved by a UrlBasedViewResolver.
ResourceLoader.getResource(java.lang.String),
ResourceBundleViewResolver,
UrlBasedViewResolver| Field Summary | |
|---|---|
static java.lang.String |
DEFAULT_LOCATION
Default if no other location is supplied |
| Fields inherited from class org.springframework.context.support.ApplicationObjectSupport |
|---|
logger |
| Fields inherited from interface org.springframework.core.Ordered |
|---|
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE |
| Constructor Summary | |
|---|---|
XmlViewResolver()
|
|
| Method Summary | |
|---|---|
void |
afterPropertiesSet()
Pre-initialize the factory from the XML file. |
void |
destroy()
Close the view bean factory on context shutdown. |
protected java.lang.Object |
getCacheKey(java.lang.String viewName,
java.util.Locale locale)
This implementation returns just the view name, as XmlViewResolver doesn't support localized resolution. |
int |
getOrder()
|
protected org.springframework.beans.factory.BeanFactory |
initFactory()
Initialize the view bean factory from the XML file. |
protected View |
loadView(java.lang.String viewName,
java.util.Locale locale)
Subclasses must implement this method, building a View object for the specified view. |
void |
setLocation(org.springframework.core.io.Resource location)
Set the location of the XML file that defines the view beans. |
void |
setOrder(int order)
|
| Methods inherited from class org.springframework.web.servlet.view.AbstractCachingViewResolver |
|---|
clearCache, createView, isCache, isCacheUnresolved, removeFromCache, resolveViewName, setCache, setCacheUnresolved |
| Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport |
|---|
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContext |
| Methods inherited from class org.springframework.context.support.ApplicationObjectSupport |
|---|
getApplicationContext, getMessageSourceAccessor, initApplicationContext, requiredContextClass, setApplicationContext |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final java.lang.String DEFAULT_LOCATION
| Constructor Detail |
|---|
public XmlViewResolver()
| Method Detail |
|---|
public void setOrder(int order)
public int getOrder()
getOrder in interface org.springframework.core.Orderedpublic void setLocation(org.springframework.core.io.Resource location)
The default is "/WEB-INF/views.xml".
location - the location of the XML file.
public void afterPropertiesSet()
throws org.springframework.beans.BeansException
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBeanorg.springframework.beans.BeansException
protected java.lang.Object getCacheKey(java.lang.String viewName,
java.util.Locale locale)
getCacheKey in class AbstractCachingViewResolver
protected View loadView(java.lang.String viewName,
java.util.Locale locale)
throws org.springframework.beans.BeansException
AbstractCachingViewResolverSubclasses are not forced to support internationalization: A subclass that does not may simply ignore the locale parameter.
loadView in class AbstractCachingViewResolverviewName - the name of the view to retrievelocale - the Locale to retrieve the view for
null if not found
(optional, to allow for ViewResolver chaining)
org.springframework.beans.BeansExceptionAbstractCachingViewResolver.resolveViewName(java.lang.String, java.util.Locale)
protected org.springframework.beans.factory.BeanFactory initFactory()
throws org.springframework.beans.BeansException
org.springframework.beans.BeansException - in case of initialization errors
public void destroy()
throws org.springframework.beans.BeansException
destroy in interface org.springframework.beans.factory.DisposableBeanorg.springframework.beans.BeansException
|
spring-webmvc | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||