Created
August 7, 2016 04:02
-
-
Save jorgevs/218483e7ba854e8e6e23be18182b0381 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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" xmlns="http://java.sun.com/xml/ns/persistence"> | |
<persistence-unit name="test" transaction-type="RESOURCE_LOCAL"> | |
<class>com.test.jpa.Student</class> | |
<properties> | |
<property name="javax.persistence.jdbc.driver" value="org.h2.Driver" /> | |
<property name="javax.persistence.jdbc.url" value="jdbc:h2:mem:test" /> | |
<property name="javax.persistence.jdbc.user" value="sa" /> | |
<property name="javax.persistence.jdbc.password" value="" /> | |
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/> | |
<property name="hibernate.hbm2ddl.auto" value="create-drop" /> | |
<property name="show_sql" value="true"/> | |
<property name="hibernate.temp.use_jdbc_metadata_defaults" value="false"/> | |
</properties> | |
</persistence-unit> | |
</persistence> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment