在Hibernate中更改默认多态性

时间:2010-06-08 09:35:51

标签: hibernate spring

我想将polymorphism="explicit"属性设置为几个hibernate映射类。是否可以覆盖默认的implicit值,这样我就不需要在多个类中设置explicit了?

<class name="xxxxx" table="XXXXX" polymorphism="explicit">

我正在使用hibernate映射xml文件(无注释或JPA),它由Spring加载如下,

<bean id="xxxsessionFactory"   class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource">
        <ref bean="xxxDataSource"/>
    </property>
    <property name="mappingResources">
        <list>
            <value>xxx.hbm.xml</value>
            --------
            --------
        </list>
    </property>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">org.hibernate.dialect.OracleDialect</prop>
            ----
            ----
        </props>
    </property>
</bean>

谢谢。

1 个答案:

答案 0 :(得分:0)

浏览hibernate源代码,看起来似乎没有办法解决这个限制。

hibernate核心类似乎通过调用各种isExplicitPolymorphism()方法来确定多态性设置,这些方法似乎都归结为org.hibernate.mapping.PersistentClass.isExplicitPolymorphism()方法。从此方法返回的值设置为org.hibernate.mapping.RootClass.setExplicitPolymorphism()方法。仅从org.hibernate.cfg.HbmBinder.bindRootPersistentClassCommonValues()(对于XML配置)和org.hibernate.cfg.annotations.EntityBinder.bindEntity()(对于注释配置)方法调用此方法。

我没有看到为映射文件中的所有实体设置ploymorphism=explicit的方法。