| Hi, It is supported, I have
<property name="hibernate.javax.cache.uri" value="classpath:jcache.xml"/>
Just have to make sure that the file is on the classpath. I have in my pom.xml
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
which picks up everything in resources. |