hibernate映射只读属性(多次映射)



需在映射文件中将insert="false" update="false",这样,该字段可被映射为多个


        <discriminator column="obj_type"/>
       
    <property insert="false" update="false" name="objType" type="java.lang.String">
     <column name="obj_type">
        <comment>数据类型(assets,consumables,workflow,contract)</comment>
     </column>
    </property>



你可能感兴趣的:(hibernate映射只读属性(多次映射))