Hi @all,
please to apologize my lowly englich, but i need you help!
I' am using Hibernate Tools 3.2.4.GA-R200905070146-H18 on Eclipse Galileo.
I have some custmizing meta tag in my hbm.xml file like folow:
<hibernate-mapping> <class name="de.itscore.commons.ts.domain.LetterCode" table="letterCode" schema="dbo" catalog="TSDB"> <id name="id" type="java.lang.Integer"> <column name="id" /> <generator class="identity"></generator> </id> <property name="text" type="string"> <meta attribute="use-in-tostring"></meta> <column name="text" length="50" /> </property> ....
after each code generation by reverse eng. my meta tag will be removed from hbm.xml file and the meta tags has no effect. I am only using meta tags which be supported according at documentation (6.1. Supported meta tags).
can anybody help?
Thanks in advance.
|