Bonjour,
Je suis débutant en J2EE JPA/hibernate. Je réalise un site web avec la dernière version d'eclipse, JBoss et JPA et hibernateTools3.2.2 et Mysql6. Seulement je peine énormément pour la configuration.
Pour JPA, j'ai un fichier persistence.xml. voilà le contenu
Eclipse n'arrive pas à reconnaitre le provider
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 <?xml version="1.0" encoding="UTF-8"?> <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_1_0.xsd" version="1.0"> <persistence-unit name="pgvPU"> <provider>org.hibernate.ejb.HibernatePersistence</provider> <properties> <property name="hibernate.archive.autodetection" value="class, hbm" /> <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" /> <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/pgv2" /> <property name="hibernate.connection.username" value="root" /> <property name="hibernate.connection.password" value="projetpgv" /> <property name="hibernate.show_sql" value="true"/> <property name="hibernate.format_sql" value="true"/> <property name="use_sql_comments" value="true"/> <property name="hibernate.hbm2ddl.auto" value="create" /> <!-- Dialecte --> <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" /> <!-- propriétés DataSource c3p0 --> <property name="hibernate.c3p0.min_size" value="5" /> <property name="hibernate.c3p0.max_size" value="20" /> <property name="hibernate.c3p0.timeout" value="300" /> <property name="hibernate.c3p0.max_statements" value="50" /> </properties> </persistence-unit> </persistence>Que dois-je changer ?<provider>org.hibernate.ejb.HibernatePersistence</provider>
Je n'arrive pas à configurer hibernate pour générer le DDL via mes entities.
Si quelqu'un peut m'aider ?
Partager