When using Ehcache with Hibernate, is there a way to specify region names with wildcards in the ehcache.xml file?
For example, to allow for cache settings at the package level (with * as a wildcard indicator):
<cache name="com.example.my.package1.*" ... />
<cache name="com.example.my.package2.*" ... />
(Note: The package-level distinction is just an example. My question is to wildcards in the general case.)