<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
  <persistence-unit name="TestPU" transaction-type="JTA">
      <provider>oracle.toplink.essentials.PersistenceProvider</provider>
      <jta-data-source>jdbc/test</jta-data-source>
      <exclude-unlisted-classes>false</exclude-unlisted-classes>
<!--
      <class>com.example.dao.SystemSettingEntity</class>
      <properties>
          <property name="toplink.target-database" value="oracle.toplink.essentials.platform.database.PostgreSQLPlatform"/>
          <property name="toplink.jdbc.user" value="postgres"/>
          <property name="toplink.jdbc.password" value="postgres"/>
          <property name="toplink.jdbc.url" value="jdbc:postgresql://localhost:5432/test"/>
          <property name="toplink.jdbc.driver" value="org.postgresql.Driver"/>
      </properties>
-->
  </persistence-unit>
</persistence>

