Joined: Tue Mar 03, 2009 6:36 pm Posts: 1
|
I'm running Eclipse Helios with JBoss Tools installed.
This is my hibernate.cfg.xml file: <hibernate-configuration> <session-factory> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.password">password</property> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/dbname</property> <property name="hibernate.connection.username">username</property> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> </session-factory> </hibernate-configuration>
This is my hibernate.reveng.xml file: <hibernate-reverse-engineering> <table-filter match-schema="dbname" match-name=".*"/> </hibernate-reverse-engineering>
I can see the database fine. When I launch the console configuration, nothing happens.
What am I missing?
|
|