|
|||||||||||
| 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.tiles.TilesConfigurer
Helper class to configure Tiles for the Spring Framework (see http://jakarta.apache.org/struts for more information about Tiles, which basically is a templating mechanism for JSP-based web applications).
The TilesConfigurer simply configures tiles using a set of files containing
definitions. The rest is done by an appropriate Resolver which could for instance
be the InternalResourceViewResolver or the
ResourceBundleViewResolver. Usage of the TilesConfigurer is done as follows:
<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/defs/general.xml</value>
<value>/WEB-INF/defs/widgets.xml</value>
<value>/WEB-INF/defs/administrator.xml</value>
<value>/WEB-INF/defs/customer.xml</value>
<value>/WEB-INF/defs/templates.xml</value>
</list>
</property>
</bean>
The values in the list are the actual files containing the definitions.
TilesView| Field Summary |
| Fields inherited from class org.springframework.context.support.ApplicationObjectSupport |
logger |
| Constructor Summary | |
TilesConfigurer()
|
|
| Method Summary | |
protected void |
initApplicationContext()
Initialization of the Tiles definition factory. |
void |
setDefinitions(java.lang.String[] definitions)
Set the Tiles definitions, i.e. |
void |
setFactoryClass(java.lang.Class factoryClass)
Set the factory class for Tiles. |
void |
setValidateDefinitions(boolean validateDefinitions)
Validate the Tiles definitions? Default is false. |
| Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport |
getServletContext, getTempDir, getWebApplicationContext, requiredContextClass |
| Methods inherited from class org.springframework.context.support.ApplicationObjectSupport |
getApplicationContext, getMessageSourceAccessor, setApplicationContext |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public TilesConfigurer()
| Method Detail |
public void setFactoryClass(java.lang.Class factoryClass)
I18nFactorySetpublic void setValidateDefinitions(boolean validateDefinitions)
validateDefinitions - true to validate,
false otherwisepublic void setDefinitions(java.lang.String[] definitions)
definitions - the files containing the definitions
protected void initApplicationContext()
throws ApplicationContextException
initApplicationContext in class ApplicationObjectSupportApplicationContextException - if an error occurs
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||