Hi,
I've been playing with the reverse engineering functionality in Hibernate Tools 3.2 with PostgreSQL 8.3 and seem to be stuck on something that I figured should be relatively trivial...
I have a simple reverse engineering configuration that looks something like this:
Code:
<hibernate-reverse-engineering>
<table-filter match-name=".*" match-catalog=".*" match-schema="public">
<meta attribute="extends">my.class</meta>
</table-filter>
</hibernate-reverse-engineering>
When I run the code generation task for generating domain code / hibernate mappings, code & mappings are generated for both tables and views in my database. Could someone suggest a configuration parameter that would allow me to simply generate code for the tables and not the views?
If this is functionality is controlled by the match-catalog attribute, then I guess I may have a PostgreSQL question, not a Hibernate Tools Question :)
At any rate, thanks for any suggestions.
-Rob-