Disable the hibernate L2 (Second-level) and query cache.
Default: false
With this property set to true, the SignServerJPA and ejbca persistence units will be deployed with some extra elements to disable the L2 and query cache.
The elements added are:
<property name="hibernate.cache.use_second_level_cache" value="false"/>
<property name="hibernate.cache.use_query_cache" value="false"/>
<property name="hibernate.cache.region.factory_class" value="org.hibernate.cache.internal.NoCachingRegionFactory"/>
CODE
The results of disabling the L2 and query cache have not been tested, but it is expected to have a negative impact on performance.