0 Replies Latest reply on Aug 27, 2008 5:03 AM by kerny3d

    hibernate tool template problem

    kerny3d

      Hi all.

      I am developing a template for Hibernate Tool and i have a little problem.

      Is there "something" to know if a column of an entity is an id?

      I've searched in every *.ftl under pojo dir in hibernate-tools.jar but i've found nothing.

      Currently, the snippet that i use is:

      <#foreach field in pojo.getAllPropertiesIterator()>
       <#if !field.equals(clazz.identifierProperty)>
       <#if pojo.getMetaAttribAsBool(field, "gen-property", true)>
       ${fieldsForInitConstructor}${pojo.getJavaTypeName(field, jdk5)} ${field.name}
       </#if>
       </#if>
      </#foreach>
      


      Thanks in advance