All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hbm.many-to-one.hbm.ftl Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
     
        property-ref="${property.value.referencedPropertyName}"
	    
<#if !property.updateable> 
        update="false"

<#if !property.insertable>
        insert="false"

<#if !property.basicPropertyAccessor>
        access="${property.propertyAccessorName}"

<#if property.cascade != "none">
        cascade="${property.cascade}"

<#assign fetchmode = c2h.getFetchMode(property)>
<#if fetchmode != "default">
        fetch="${fetchmode}"

<#if !property.optimisticLocked>
        optimistic-lock="false"

    >
    <#assign metaattributable=property>
	<#include "meta.hbm.ftl">    
<#foreach column in property.columnIterator>
        <#include "column.hbm.ftl">
	
   




© 2015 - 2024 Weber Informatics LLC | Privacy Policy