2007/8/31, Eugen Stoianovici <[EMAIL PROTECTED]>: > > I'm using using struts 2.0.9 with springframework 2.0.6 and i want to > use tiles as a template engine. Now in struts1 i would use > org.apache.struts.tiles.xmlDefinition.I18nFactorySet to initialize the > org.springframework.web.servlet.view.tiles.TilesConfigurer but there's > no such class in struts2. Is there a replacement?
Spring has an integration layer to Struts 1, but none for Struts 2. Instead, you have to use Spring Plugin included in the Struts 2 distribution: http://struts.apache.org/2.x/docs/spring-plugin.html About Tiles, there is no need to add particular configuration as long as you use Struts 2 - Tiles 2 plugin: http://struts.apache.org/2.x/docs/tiles-plugin.html And anyway, the I18nFactorySet has been removed from Tiles. For more information about Tiles 2 itself, see: http://tiles.apache.org/ In particular: http://tiles.apache.org/migration/index.html HTH Antonio