Hibernate Reverse Engineering not generating domain classes for all tables from given database

119 views Asked by At

Here i have specified to hibernate code generator to create domain classes for all the tables present in stocksdata and exclude 2 of them, the code doesnt works and generates nothing ! please help !

   <?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-catalog="stocksdata" match-name="user" exclude="true"/>
  <table-filter match-catalog="stocksdata" match-name="hibernate_sequence" exclude="true"/>
  <table-filter match-catalog="stocksdata" match-schema="stocksdata" match-name=".*"/>
</hibernate-reverse-engineering>

database screenshot

0

There are 0 answers