2009/3/17 Ken Bowen <[email protected]>: > Is it possible for a tiles-defs.xml file to obtain a value from a > context-param in the the web.xml?
No, but you can use EL to obtain an attribute stored in ServletContext:
<put-attribute name="myattr" value="${applicationScope.myparm}"/>
For more info:
http://tiles.apache.org/framework/tutorial/advanced/el-support.html
Ciao
Antonio
