28
28
import org .apache .tiles .definition .DefinitionsFactory ;
29
29
import org .apache .tiles .definition .digester .DigesterDefinitionsReader ;
30
30
import org .apache .tiles .evaluator .el .ELAttributeEvaluator ;
31
+ import org .apache .tiles .evaluator .impl .DirectAttributeEvaluator ;
31
32
import org .apache .tiles .factory .TilesContainerFactory ;
32
33
import org .apache .tiles .preparer .BasicPreparerFactory ;
33
34
import org .apache .tiles .servlet .context .ServletTilesApplicationContext ;
39
40
40
41
import org .springframework .beans .factory .DisposableBean ;
41
42
import org .springframework .beans .factory .InitializingBean ;
43
+ import org .springframework .util .ClassUtils ;
42
44
import org .springframework .util .CollectionUtils ;
43
45
import org .springframework .util .StringUtils ;
44
46
import org .springframework .web .context .ServletContextAware ;
48
50
* <a href="http://tiles.apache.org">http://tiles.apache.org</a>
49
51
* for more information about Tiles, which basically is a templating
50
52
* mechanism for JSP-based web applications.
53
+ *
51
54
* <b>Note: Spring 3.0 requires Tiles 2.1.2 or above.</b>
55
+ * Tiles EL support will be activated by default when running on JSP 2.1 or above.
52
56
*
53
57
* <p>The TilesConfigurer simply configures a TilesContainer using a set of files
54
58
* containing definitions, to be accessed by {@link TilesView} instances. This is a
82
86
*/
83
87
public class TilesConfigurer implements ServletContextAware , InitializingBean , DisposableBean {
84
88
89
+ private static final boolean jsp21Present = ClassUtils .isPresent (
90
+ "javax.servlet.jsp.JspApplicationContext" , TilesConfigurer .class .getClassLoader ());
91
+
85
92
protected final Log logger = LogFactory .getLog (getClass ());
86
93
87
94
private final Properties tilesPropertyMap = new Properties ();
@@ -94,12 +101,12 @@ public TilesConfigurer() {
94
101
WildcardServletTilesApplicationContextFactory .class .getName ());
95
102
this .tilesPropertyMap .put (TilesContainerFactory .PREPARER_FACTORY_INIT_PARAM ,
96
103
BasicPreparerFactory .class .getName ());
104
+ this .tilesPropertyMap .put (TilesContainerFactory .CONTAINER_FACTORY_MUTABLE_INIT_PARAM ,
105
+ Boolean .toString (false ));
97
106
this .tilesPropertyMap .put (DefinitionsFactory .LOCALE_RESOLVER_IMPL_PROPERTY ,
98
107
SpringLocaleResolver .class .getName ());
99
108
this .tilesPropertyMap .put (TilesContainerFactory .ATTRIBUTE_EVALUATOR_INIT_PARAM ,
100
- ELAttributeEvaluator .class .getName ());
101
- this .tilesPropertyMap .put (TilesContainerFactory .CONTAINER_FACTORY_MUTABLE_INIT_PARAM ,
102
- Boolean .toString (false ));
109
+ jsp21Present ? ELAttributeEvaluator .class .getName () : DirectAttributeEvaluator .class .getName ());
103
110
}
104
111
105
112
0 commit comments