blob: 32489467a16ad2d22a68833342f1f0312d082f94 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<!--
Configuration file for HibernateL2CacheExample.
-->
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.url">jdbc:h2:mem:example;DB_CLOSE_DELAY=-1</property>
<!-- Drop and re-create the database schema on startup. -->
<property name="hbm2ddl.auto">create</property>
<!-- Enable L2 cache. -->
<property name="cache.use_second_level_cache">true</property>
<!-- Enable query cache. -->
<property name="cache.use_query_cache">true</property>
<!-- Generate L2 cache statistics. -->
<property name="generate_statistics">true</property>
<!-- Specify Ignite as L2 cache provider. -->
<property name="cache.region.factory_class">org.apache.ignite.cache.hibernate.HibernateRegionFactory</property>
<!-- Specify connection release mode. -->
<property name="connection.release_mode">on_close</property>
<!-- Set default L2 cache access type. -->
<property name="org.apache.ignite.hibernate.default_access_type">READ_ONLY</property>
<!-- Specify the entity classes for mapping. -->
<mapping class="org.apache.ignite.examples.datagrid.hibernate.User"/>
<mapping class="org.apache.ignite.examples.datagrid.hibernate.Post"/>
<!-- Per-class L2 cache settings. -->
<class-cache class="org.apache.ignite.examples.datagrid.hibernate.User" usage="read-only"/>
<class-cache class="org.apache.ignite.examples.datagrid.hibernate.Post" usage="read-only"/>
<collection-cache collection="org.apache.ignite.examples.datagrid.hibernate.User.posts" usage="read-only"/>
</session-factory>
</hibernate-configuration>