Skip to content

Instantly share code, notes, and snippets.

@koenighotze
Created September 28, 2015 21:52
Show Gist options
  • Save koenighotze/305fceff59a5a1987a01 to your computer and use it in GitHub Desktop.
Save koenighotze/305fceff59a5a1987a01 to your computer and use it in GitHub Desktop.
persistence xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="JEE7HelloWorld-Booking" transaction-type="JTA">
<properties>
<property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>
</properties>
</persistence-unit>
</persistence>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment