Hibernate does not create table

0

My databases are created in Oracle.

I am not able to reverse engineer when I run Hibernate Code Generation Configurations in Eclipse. When I click on RUN nothing happens. On the Exporters tab I selected the first 3 items.

cfg.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">oracle.jdbc.OracleDriver</property>
        <property name="hibernate.connection.password">schema</property>
        <property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
        <property name="hibernate.connection.username">crsjava8</property>
        <property name="hibernate.default_schema">CSRJAVA8</property>
        <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property>
    </session-factory>
</hibernate-configuration>

reveng.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.org/dtd/hibernate-reverse-engineering-3.0.dtd" >

<hibernate-reverse-engineering>
  <table-filter match-schema="CRSJAVA8" match-name="CLIENTE"/>
  <table-filter match-schema="CRSJAVA8" match-name="CURSO"/>
  <table-filter match-schema="CRSJAVA8" match-name="PAGAMENTO"/>
</hibernate-reverse-engineering>
    
asked by anonymous 22.09.2018 / 22:15

0 answers