You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Arnaud C. <arn...@ca...> - 2005-05-13 08:41:43
|
Hi, I have a big problem. This mapping can't be parsing by jnius, and I don't know why? It answer me that there is a problem with the many-to-one elements. so, help me please <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 2.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" > <hibernate-mapping> <class name="com.capgemini.persistence.ClassExtractionDefinition" table="CLASS_EXTRACTION_DEFINITION" > <id name="ledId" type="java.lang.Long" column="LED_ID" > <generator class="assigned" /> </id> <property name="ledOrder" type="int" column="LED_ORDER" not-null="true" length="2" /> <property name="ledMethAssoc" type="java.lang.String" column="LED_METH_ASSOC" length="25" /> <property name="ledClassName" type="java.lang.String" column="LED_CLASS_NAME" length="100" /> <!-- Associations --> <!-- bi-directional many-to-one association to DicTable --> <many-to-one name="dicTable" class="com.capgemini.persistance.DicTable" not-null="true" > <column name="DTA_ID" /> </many-to-one> <!-- bi-directional one-to-many association to Entitytoload --> <set name="entitytoloads" lazy="true" inverse="true" cascade="all" > <key> <column name="LED_ID" /> </key> <one-to-many class="com.capgemini.persistance.Entitytoload" /> </set> <!-- bi-directional one-to-many association to DataExtractionDefinition --> <set name="dataExtractionDefinitions" lazy="true" inverse="true" cascade="all" > <key> <column name="LED_ID" /> </key> <one-to-many class="com.capgemini.persistance.DataExtractionDefinition" /> </set> <!-- bi-directional many-to-one association to ContentExtractionDefinition --> <many-to-one name="contentExtractionDefinition" class="com.capgemini.persistance.ContentExtractionDefinition" not-null="true" > <column name="CED_ID" /> </many-to-one> </class> </hibernate-mapping> This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. |