I have no idea what I'm doing wrong. Here's a fragment of my reveng.xml file:
<hibernate-reverse-engineering> <table-filter match-name=".*" package="com.peanuts.hib"/> <table name="image" schema="PUBLIC" class="ImageInfo"> <primary-key> <generator class="increment"/> <key-column name="image_id"/> </primary-key> <foreign-key constraint-name="item_image"> <many-to-one/> </foreign-key> </table> ... (more table tags) </hibernate-reverse-engineering>
It's generating a file for each table, but it ignores everything in the table tags. It doesn't give me a class of the specified name, which I don't really care about, but it ignores the "many-to-one" relationship, which is far more important.
Can anyone tell me what I might be doing wrong?
|