Hi.
I'm developing an Struts application with Hibernate. I use Oracle 10g.
When I run the application, the hibernate plugin connects correctly to the database and maps the entities I configured manually in the hibernate.cfg.xml.
I want to do a reverse eng creating the java dao objects, but when I try to fetch all tables, nothing appears and no error is shown.
If I configure the hibernate tools to generate the html documentation, I get an IndexOutOfBoundException (0,0).
any idea?
<hibernate-configuration>
<session-factory name="factory">
<property name="hibernate.bytecode.use_reflection_optimizer">false</property>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.password">iaap</property>
<property name="hibernate.connection.url">jdbc:oracle:thin:@192.168.58.191:1521:iaap</property>
<property name="hibernate.connection.username">iaap</property>
<property name="hibernate.default_schema">iaap</property>
<property name="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</property>
</session-factory>
</hibernate-configuration>
|