Skip to content

Instantly share code, notes, and snippets.

@aevilesaguiar
Forked from halyph/persistence.xml
Created August 5, 2022 13:15
Show Gist options
  • Save aevilesaguiar/2819168a2d0947d04b45ca7260553757 to your computer and use it in GitHub Desktop.
Save aevilesaguiar/2819168a2d0947d04b45ca7260553757 to your computer and use it in GitHub Desktop.
persistence.xml MySQL settings
<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="org.hibernate.tutorial.jpa" transaction-type="RESOURCE_LOCAL">
<description>
Persistence unit for the JPA tutorial of the Hibernate Getting Started Guide
</description>
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>org.halyph.sessiondemo.Event</class>
<properties>
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/jpatestdb" />
<property name="javax.persistence.jdbc.user" value="root" />
<property name="javax.persistence.jdbc.password" value="root" />
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="create" />
</properties>
</persistence-unit>
</persistence>
@aevilesaguiar
Copy link
Author

salvando Configurações do MySQL do persistence.xml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment