排除一个类在hibernate中创建表

时间:2013-07-04 09:48:43

标签: java hibernate jpa orm persistence.xml

我有一个像这样的持久性单元:

  <persistence-unit name="persistence Unit"
        transaction-type="JTA">     
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <class>com.example.User</class>
        <class>com.example.Team</class>
        <exclude-unlisted-classes />

        <properties>
            <property name="hibernate.hbm2ddl.auto" value="update" /> 
            <property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.ImprovedNamingStrategy" />
            <property name="hibernate.connection.charSet" value="UTF-8" />
            <!-- JTA stuff -->
            <property name="hibernate.transaction.manager_lookup_class"
                value="org.hibernate.transaction.BTMTransactionManagerLookup" />
        </properties>               
    </persistence-unit>

当服务器第一次加载时,这会为UserTeam创建表,但我不想为Team创建表。有可能吗?

持久性表中的某些设置可能是?

2 个答案:

答案 0 :(得分:0)

Team删除以下行中排除persistance.xml课程。

<class>com.example.Team</class> 

答案 1 :(得分:0)

如果应用程序以任何方式更改了表Team(INSERT或UPDATE),您可以在数据库系统中删除它的写入权限。