Hello All,
I was wondering if it is possible to use wildcards to configure the
tiles definition files using the context parameter? Spring does
something like this where you can specify an expression for what files
to consider as part of your spring application context. It looks like
this:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>
It would be nice if tiles did something similar:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:tiles-def*.xml</param-value>
</context-param>
Does anyone know if this is possible or planned (if not currently
supported?)
Thanks in advance,
MG