Skip to content

Instantly share code, notes, and snippets.

@halyph
Created June 25, 2012 19:39
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save halyph/2990769 to your computer and use it in GitHub Desktop.
Save halyph/2990769 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>
@shadowofevans
Copy link

Great question. I'm trying to work through this now as I believe it is the root cause of a namespace error I'm having. If you are using Maven you will probably need to put it there; otherwise, in your classpath.

@shadowofevans
Copy link

BTW... If you are using maven add this to your pom:

mysql mysql-connector-java 5.1.23

@khacsinhcs
Copy link

Can I change transaction type to JTA?

@khacsinhcs
Copy link

My web project is run on Glassfish server and using j2ee 7. But I couldn't connect to mySql server.

I config persistence.xml file like yours, it don't connect to mySql db but connect to derby

@TundeMichael
Copy link

@khacsinhcs you're probably using Netbeans. That problem is common to netbeans.

@Harshaganta
Copy link

mine is throwing an exception error like this "Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]"
what to do
i cannot able to connect to mysql database

@htkcodes
Copy link

IT AINT FUCKING WORKING CUNTS

@cananeadouglas
Copy link

very good. thanks

@vithu4
Copy link

vithu4 commented Dec 19, 2017

if im using mysql in xampp do i need to put org.hibernate.dialect.MySQL5Dialec in the application properties of spring boot prj ?

@kavianhabib
Copy link

org.hibernate.ejb.HibernatePersistence

change the above line to

org.hibernate.jpa.HibernatePersistenceProvider

@bittap
Copy link

bittap commented Sep 2, 2022

I executed that persistence.xml and then the Hibernate show me this message

23:50:44.846 [main] WARN org.hibernate.orm.connections.pooling - HHH10001002: Using Hibernate built-in connection pool (not for production use!)
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

Therefore, I recommend to change this to the under line

<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />

->

<property name="javax.persistence.jdbc.driver" value="com.mysql.cj.jdbc.Driver"/>

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