Skip to content

Instantly share code, notes, and snippets.

@lzhoucs
Created April 21, 2013 19:13
Show Gist options
  • Save lzhoucs/5430686 to your computer and use it in GitHub Desktop.
Save lzhoucs/5430686 to your computer and use it in GitHub Desktop.
JPA 2 persistence.xml example with hibernate and h2
<persistence 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_2_0.xsd"
version="2.0">
<persistence-unit name="punit1">
<jta-data-source>java:/DefaultDS</jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
</properties>
</persistence-unit>
</persistence>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment