1 <persistence xmlns="http://java.sun.com/xml/ns/persistence"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
5 <persistence-unit name="mythtv">
6 <provider>org.hibernate.ejb.HibernatePersistence</provider>
7 <jta-data-source>jdbc/mythtv</jta-data-source>
8 <class>org.wamblee.mythtv.Channel</class>
9 <class>org.wamblee.mythtv.Recording</class>
10 <exclude-unlisted-classes>true</exclude-unlisted-classes>
12 <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLInnoDBDialect"/>
13 <property name="hibernate.show_sql" value="false"/>
14 <property name="hibernate.cache.provider" value="org.hibernate.cache.EhCacheProvider"/>