Возможно, я бы попробовал использовать подстановочные знаки с вашими результатами плиток.
http://struts.apache.org/2.2.3/docs/wildcard-mappings.html
Вам также может понадобиться включить некоторые параметры конфигурации в файл struts.xml:
<constant name="struts.enable.SlashesInActionNames" value="true"/>
<constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/>
<constant name="struts.patternMatcher" value="regex" />
Если у вас есть доступ к структуре каталогов в URL-адресе или в классе действий Struts, его можно передать в виде результатов плиток следующим образом:
//passing the value in with the action call
<action name="hello/{myDirectory}">
<result type="tiles">/Hello.{1}.tiles</result>
</action>
//passing the value from a field within the action
<action name="hello">
<result type="tiles">/Hello.${myDirectory}.tiles</result>
</action>
Затем вы настраиваете плитки так, чтобы они также принимали подстановочные знаки
http://tiles.apache.org/framework/tutorial/advanced/wildcard.html
<definition name="hello.*.tiles" template="/layout.jsp">
<put-attribute name="body" value="/{1}/hello.jsp"/>
</definition>