我想將polymorphism="explicit"
屬性設置爲多個hibernate映射類。是否可以重寫默認的implicit
值,以便我不需要在多個類中設置explicit
?更改Hibernate中的默認多態性
<class name="xxxxx" table="XXXXX" polymorphism="explicit">
我使用Hibernate映射XML文件(沒有說明或JPA),它是由彈簧加載如下,
<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>
謝謝。