Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to generate java class from Sql Server DB. I'm using Hibernate Tool. I don't wont create classes for foreign-key.

I find I can write reveng.xml like this:

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

<hibernate-reverse-engineering>
    <type-mapping>
        <sql-type jdbc-type="VARCHAR" hibernate-type="string"></sql-type>
        <sql-type jdbc-type="NVARCHAR" hibernate-type="string"></sql-type>
        <sql-type jdbc-type="NCHAR" hibernate-type="string"></sql-type>
    </type-mapping>
    <table-filter match-schema="dbo" match-name=".*" match-catalog="MyCatalog">
    </table-filter>
    <table name="USER"> 
        <foreign-key constraint-name="FK_USER_TYPE">
            <many-to-one exclude="true" />
            <set exclude="true" />
        </foreign-key>
    </table>
</hibernate-reverse-engineering>

It works but I wish do it for all my table and my constraint without write a row for each one.

How can I do it ?

Tanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.