Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
6.4.0
-
None
Description
Starting in 6.4.0 a tiles definition in /WEB-INF/tiles.xml is not found automatically anymore. The problem arises only, if the definition in web.xml contains no param section:
<listener> <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> </listener>
The workaround is to specify the specific location:
<listener> <listener-class>org.apache.struts2.tiles.StrutsTilesListener</listener-class> </listener> <context-param> <param-name>org.apache.tiles.definition.DefinitionsFactory.DEFINITIONS_CONFIG</param-name> <param-value> /WEB-INF/tiles.xml </param-value> </context-param>
The issue has been introduced by this change
Attachments
Issue Links
- is broken by
-
WW-5402 Auto loading the Tiles definition files from the classpath dependent JAR
- Closed
- links to