Tiles 2 support back for Spring 4.3 (to be eventually removed for 5.0 now)

Issue: SPR-13229
This commit is contained in:
Juergen Hoeller
2015-12-21 22:15:22 +01:00
parent dd930b3b66
commit 57b3ee324f
18 changed files with 1099 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.servlet.DispatcherServlet;
/**
* Abstract implementation of the Tiles3 {@link org.apache.tiles.preparer.PreparerFactory}
* Abstract implementation of the Tiles {@link org.apache.tiles.preparer.PreparerFactory}
* interface, obtaining the current Spring WebApplicationContext and delegating to
* {@link #getPreparer(String, org.springframework.web.context.WebApplicationContext)}.
*

View File

@@ -27,7 +27,7 @@ import org.apache.tiles.preparer.factory.NoSuchPreparerException;
import org.springframework.web.context.WebApplicationContext;
/**
* Tiles3 {@link org.apache.tiles.preparer.PreparerFactory} implementation
* Tiles {@link org.apache.tiles.preparer.PreparerFactory} implementation
* that expects preparer class names and builds preparer instances for those,
* creating them through the Spring ApplicationContext in order to apply
* Spring container callbacks and configured Spring BeanPostProcessors.

View File

@@ -22,7 +22,7 @@ import org.apache.tiles.preparer.ViewPreparer;
import org.springframework.web.context.WebApplicationContext;
/**
* Tiles3 {@link org.apache.tiles.preparer.PreparerFactory} implementation
* Tiles {@link org.apache.tiles.preparer.PreparerFactory} implementation
* that expects preparer bean names and obtains preparer beans from the
* Spring ApplicationContext. The full bean creation process will be in
* the control of the Spring application context in this case, allowing

View File

@@ -1,6 +1,6 @@
/**
* Support classes for the integration of
* <a href="http://tiles.apache.org">Tiles3</a>
* <a href="http://tiles.apache.org">Tiles 3</a>
* (the standalone version of Tiles) as Spring web view technology.
* Contains a View implementation for Tiles definitions.
*/