2009/11/30 Todd Nine <[email protected]>: > When I run in debug mode, my tiles > container is an instance of a BasicTilesContainer. Within that instance, my > evaluator is an instance of the class > org.apache.tiles.evaluator.el.elattributeevalua...@1a543937.
It's not so simple, ELAttributeEvaluator needs an instance of an ELResolver. In Tiles 2.1 the correct instance is created with the call of ELAttributeEvaluator.init method, or via the "setResolver" method. In Tiles 2.2 only "setResolver" is available (CompleteAutoloadTilesContainerFactory loads it too). See if the resolver is a composite resolver containing all the needed ones (see the source code for it). Antonio P.S. Thanks for opening that issue :-)
