Bonjour,
J'ai un problème pour installer Hibernate tools
Voici mon fichier hibernate.cfg.xml
Le problème est que hibernate Tools n'arrive pas à ce connecter à ma base de donnée.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <property name="hibernate.connection.driver_class">oracle.jdbc.OracleDriver</property> <property name="hibernate.connection.password">prod</property> <property name="hibernate.connection.url">jdbc:oracle:thin:@dbserver:1521:Oracle10G</property> <property name="hibernate.connection.username">prod</property> <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property> </session-factory> </hibernate-configuration>
Dans ma progressbar j'ai le message "Fetching children of database".
J'utilise Eclipse 3.3.2
Oracle 10G
Hibernate Tools 3.2.2.Beta1
Partager