Skip to content

Instantly share code, notes, and snippets.

@ggdio
Created September 17, 2013 19:16
Show Gist options
  • Save ggdio/6599305 to your computer and use it in GitHub Desktop.
Save ggdio/6599305 to your computer and use it in GitHub Desktop.
JPA XML config
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
<persistence-unit name="nomeDaPersistenceUnit">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/database" />
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
<property name="hibernate.connection.username" value="usuario" />
<property name="hibernate.connection.password" value="senha" />
<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