Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF » [CDO Hibernate] not-null property references a null or transient value
[CDO Hibernate] not-null property references a null or transient value [message #549684] Tue, 27 July 2010 14:33 Go to next message
BastienFriend
Messages: 44
Registered: March 2010
Member
Hi,
I am having problems when I try to commit a model.
When I manipulate it locally and as an EMF resource I don't have any problem so I presume it's valid.
However, when I try to commit it on my cdo server I have this error:

Quote:
[ERROR] not-null property referenceus a null or transient value: StringValue.vt_data
org.hibernate.PropertyValueException: not-null property references a null or transient value: StringValue.vt_data
at org.hibernate.engine.Nullability.checkNullability(Nullabilit y.java:95)
at org.hibernate.event.def.AbstractSaveEventListener.performSav eOrReplicate(AbstractSaveEventListener.java:313)
at org.hibernate.event.def.AbstractSaveEventListener.performSav e(AbstractSaveEventListener.java:204)
at org.hibernate.event.def.AbstractSaveEventListener.saveWithGe neratedId(AbstractSaveEventListener.java:130)


Here is the smallest model which reproduces the error:

<?xml version="1.0" encoding="ISO-8859-1"?>
<SpreadsheetMLSimplified:Workbook xmi:version="2.0"
    xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:SpreadsheetMLSimplified="http://SpreadsheetMLSimplified">
  <wb_worksheets name="Segments">
    <ws_table>
      <t_cols index="1" autoFitWidth="true" width="100.0"/>
      <t_rows index="1">
        <r_cells>
          <c_data>
            <value xsi:type="SpreadsheetMLSimplified:StringValue" value="Code"/>
          </c_data>
        </r_cells>
      </t_rows>
    </ws_table>
  </wb_worksheets>
</SpreadsheetMLSimplified:Workbook>


I can't provide you the metamodel because of the forum restrictions (no attachments).

What would be the cause of this exception ?
I'm using CDO check-out from cvs (R_3_0_GA branch) with hibernate 3.3.2

Regards,
Bastien.

[Updated on: Tue, 27 July 2010 14:40]

Report message to a moderator

Re: [CDO Hibernate] not-null property references a null or transient value [message #549750 is a reply to message #549684] Tue, 27 July 2010 19:46 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Bastien,
Apparently hibernate thinks that StringValue.vt_data is a mandatory feature and complaints that it is null.

Can you post the relevant part of your ecore model? And check the generated hibernate mapping if the mapped field is
indeed mandatory/required?

gr. Martin

On 07/27/2010 04:33 PM, Bastien wrote:
> Hi,
> I am having problems when I try to commit a model.
> When I manipulate it locally and as an EMF resource I don't have any
> problem so I presume it's valid.
> However, when I try to commit it on my cdo server I have this error:
>
> Quote:
>> [ERROR] not-null property referenceus a null or transient value:
>> StringValue.vt_data
>> org.hibernate.PropertyValueException: not-null property references a
>> null or transient value: StringValue.vt_data
>> at org.hibernate.engine.Nullability.checkNullability(Nullabilit
>> y.java:95)
>> at org.hibernate.event.def.AbstractSaveEventListener.performSav
>> eOrReplicate(AbstractSaveEventListener.java:313)
>> at org.hibernate.event.def.AbstractSaveEventListener.performSav
>> e(AbstractSaveEventListener.java:204)
>> at org.hibernate.event.def.AbstractSaveEventListener.saveWithGe
>> neratedId(AbstractSaveEventListener.java:130)
>
>
> What would be the cause of this exception ?
> I'm using CDO check-out from cvs (R_3_0_GA branch) with hibernate 3.3.2
>
> Regards,
> Bastien.


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [CDO Hibernate] not-null property references a null or transient value [message #549813 is a reply to message #549684] Wed, 28 July 2010 05:35 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6683
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------090604070506050001010105
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Bastien,

"R_3_0_GA" is the *tag* of the 3.0 release version and it will never move. If you want to checkout from the maintenance *branch* please use "R3_0_maintenance".

Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 27.07.2010 16:33, schrieb Bastien:
> Hi,
> I am having problems when I try to commit a model.
> When I manipulate it locally and as an EMF resource I don't have any problem so I presume it's valid.
> However, when I try to commit it on my cdo server I have this error:
>
> Quote:
>> [ERROR] not-null property referenceus a null or transient value: StringValue.vt_data
>> org.hibernate.PropertyValueException: not-null property references a null or transient value: StringValue.vt_data
>> at org.hibernate.engine.Nullability.checkNullability(Nullabilit y.java:95)
>> at org.hibernate.event.def.AbstractSaveEventListener.performSav eOrReplicate(AbstractSaveEventListener.java:313)
>> at org.hibernate.event.def.AbstractSaveEventListener.performSav e(AbstractSaveEventListener.java:204)
>> at org.hibernate.event.def.AbstractSaveEventListener.saveWithGe neratedId(AbstractSaveEventListener.java:130)
>
>
> What would be the cause of this exception ?
> I'm using CDO check-out from cvs (R_3_0_GA branch) with hibernate 3.3.2
>
> Regards,
> Bastien.

--------------090604070506050001010105
Content-Type: multipart/related;
boundary="------------080108030000070406030304"


--------------080108030000070406030304
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Bastien,<br>
<br>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
"R_3_0_GA" is the *tag* of the 3.0 release version and it will never
move. If you want to checkout from the maintenance *branch* please
use "R3_0_maintenance".<br>
<br>
<!--WISESTAMP_SIG_73859_START--><span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.05000205.06060308@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.05030905.03000400@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.07060906.07090805@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.02070907.07040108@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.03030505.00000809@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_73859_END--><br>
<br>
Am 27.07.2010 16:33, schrieb Bastien:
<blockquote cite="mid:i2mqo0$4fl$1@build.eclipse.org" type="cite">Hi,
<br>
I am having problems when I try to commit a model.
<br>
When I manipulate it locally and as an EMF resource I don't have
any problem so I presume it's valid.
<br>
However, when I try to commit it on my cdo server I have this
error:
<br>
<br>
Quote:
<br>
<blockquote type="cite">[ERROR] not-null property referenceus a
null or transient value: StringValue.vt_data
<br>
org.hibernate.PropertyValueException: not-null property
references a null or transient value: StringValue.vt_data
<br>
    at 
org.hibernate.engine.Nullability.checkNullability(Nullabilit
y.java:95)
<br>
    at 
org.hibernate.event.def.AbstractSaveEventListener.performSav
eOrReplicate(AbstractSaveEventListener.java:313)
<br>
    at 
org.hibernate.event.def.AbstractSaveEventListener.performSav
e(AbstractSaveEventListener.java:204)
<br>
    at 
org.hibernate.event.def.AbstractSaveEventListener.saveWithGe
neratedId(AbstractSaveEventListener.java:130)
<br>
</blockquote>
<br>
<br>
What would be the cause of this exception ?
<br>
I'm using CDO check-out from cvs (R_3_0_GA branch) with hibernate
3.3.2
<br>
<br>
Regards,
<br>
Bastien.
<br>
</blockquote>
</body>
</html>

--------------080108030000070406030304
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.05000205.06060308@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------080108030000070406030304
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.05030905.03000400@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------080108030000070406030304
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.07060906.07090805@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------080108030000070406030304
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.02070907.07040108@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------080108030000070406030304
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.03030505.00000809@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------080108030000070406030304--

--------------090604070506050001010105--


Re: [CDO Hibernate] not-null property references a null or transient value [message #549844 is a reply to message #549750] Wed, 28 July 2010 08:26 Go to previous messageGo to next message
BastienFriend
Messages: 44
Registered: March 2010
Member
Hi Martin and Eike,
thanks for your reply, here are the relevant part of my metamodel and generated mapping. I still have the problem even after I changed to "R3_0_maintenance" branch , following Eike's advice.

Regards,
Bastien.

 <eClassifiers xsi:type="ecore:EClass" name="ValueType" abstract="true"
    <eStructuralFeatures xsi:type="ecore:EReference" name="vt_data" ordered="false"
        lowerBound="1" eType="#//Data" eOpposite="#//Data/value"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//ValueType">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
        lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
  </eClassifiers>
<eClassifiers xsi:type="ecore:EClass" name="Data">
    <eStructuralFeatures xsi:type="ecore:EReference" name="d_cell" ordered="false"
        lowerBound="1" eType="#//Cell" eOpposite="#//Cell/c_data"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false"
        lowerBound="1" eType="#//ValueType" containment="true" eOpposite="#//ValueType/vt_data"/>
  </eClassifiers>


	<class entity-name="ValueType" abstract="true" lazy="true" table="`valuetype`">
		<meta attribute="eclassName">ValueType</meta>
		<meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
		<tuplizer entity-mode="pojo" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<tuplizer entity-mode="dynamic-map" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<id type="long" name="idcol" column="idcol" access="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSyntheticIdPropertyHandler">
			<meta attribute="syntheticId">true</meta>
			<generator class="native"/>
		</id>
		<property name="resourceID" type="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOIDUserType">
			<column name="resource_id"/>
		</property>
		<property name="containerID" type="string">
			<column name="container_id"/>
		</property>
		<property name="version" type="java.lang.Integer">
			<meta attribute="version">true</meta>
			<column name="version"/>
		</property>
		<one-to-one name="vt_data" entity-name="Data" cascade="merge,persist,save-update,lock" lazy="false" property-ref="value" constrained="true"/>
	</class>
	<joined-subclass entity-name="StringValue" abstract="false" lazy="true" extends="ValueType" table="`stringvalue`">
		<meta attribute="eclassName">StringValue</meta>
		<meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
		<tuplizer entity-mode="pojo" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<tuplizer entity-mode="dynamic-map" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<key>
			<column name="`valuetype_e_id`"/>
		</key>
		<property name="value" lazy="false" insert="true" update="true" not-null="true" unique="false" type="java.lang.String">
			<column not-null="true" unique="false" name="`value`"/>
		</property>
	</joined-subclass>
	<class entity-name="Data" abstract="false" lazy="true" table="`data`">
		<meta attribute="eclassName">Data</meta>
		<meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
		<tuplizer entity-mode="pojo" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<tuplizer entity-mode="dynamic-map" class="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORevisionTuplizer"/>
		<id type="long" name="idcol" column="idcol" access="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSyntheticIdPropertyHandler">
			<meta attribute="syntheticId">true</meta>
			<generator class="native"/>
		</id>
		<property name="resourceID" type="org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOIDUserType">
			<column name="resource_id"/>
		</property>
		<property name="containerID" type="string">
			<column name="container_id"/>
		</property>
		<property name="version" type="java.lang.Integer">
			<meta attribute="version">true</meta>
			<column name="version"/>
		</property>
		<one-to-one name="d_cell" entity-name="Cell" cascade="merge,persist,save-update,lock" lazy="false" property-ref="c_data" constrained="true"/>
		<many-to-one name="value" entity-name="ValueType" cascade="all" not-null="true" lazy="false" insert="true" update="true" unique="true"/>
	</class>


Re: [CDO Hibernate] not-null property references a null or transient value [message #549879 is a reply to message #549844] Wed, 28 July 2010 10:01 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6683
Registered: July 2009
Senior Member
Am 28.07.2010 10:26, schrieb Bastien:
> Hi Martin and Eike,
> thanks for your reply, here are the relevant part of my metamodel and generated mapping. I still have the problem even after I changed to "R3_0_maintenance" branch , following Eike's advice.
Well, 3.0 maintenance has just begun and there are just a handful of fixes between 3.0GA and R3_0_maintenance. It was more a general hint ;-)

Cheers
/Eike

>
> Regards,
> Bastien.
>
> <eClassifiers xsi:type="ecore:EClass" name="ValueType" abstract="true"
> <eStructuralFeatures xsi:type="ecore:EReference" name="vt_data" ordered="false"
> lowerBound="1" eType="#//Data" eOpposite="#//Data/value"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="StringValue" eSuperTypes="#//ValueType">
> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value" ordered="false"
> lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="Data">
> <eStructuralFeatures xsi:type="ecore:EReference" name="d_cell" ordered="false"
> lowerBound="1" eType="#//Cell" eOpposite="#//Cell/c_data"/>
> <eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false"
> lowerBound="1" eType="#//ValueType" containment="true" eOpposite="#//ValueType/vt_data"/>
> </eClassifiers>
>
>
>
> <class entity-name="ValueType" abstract="true" lazy="true" table="`valuetype`">
> <meta attribute="eclassName">ValueType</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <tuplizer entity-mode="dynamic-map" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <id type="long" name="idcol" column="idcol" access=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSy ntheticIdPropertyHandler ">
> <meta attribute="syntheticId">true</meta>
> <generator class="native"/>
> </id>
> <property name="resourceID" type=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOID UserType ">
> <column name="resource_id"/>
> </property>
> <property name="containerID" type="string">
> <column name="container_id"/>
> </property>
> <property name="version" type="java.lang.Integer">
> <meta attribute="version">true</meta>
> <column name="version"/>
> </property>
> <one-to-one name="vt_data" entity-name="Data" cascade="merge,persist,save-update,lock" lazy="false" property-ref="value" constrained="true"/>
> </class>
> <joined-subclass entity-name="StringValue" abstract="false" lazy="true" extends="ValueType" table="`stringvalue`">
> <meta attribute="eclassName">StringValue</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <tuplizer entity-mode="dynamic-map" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <key>
> <column name="`valuetype_e_id`"/>
> </key>
> <property name="value" lazy="false" insert="true" update="true" not-null="true" unique="false" type="java.lang.String">
> <column not-null="true" unique="false" name="`value`"/>
> </property>
> </joined-subclass>
> <class entity-name="Data" abstract="false" lazy="true" table="`data`">
> <meta attribute="eclassName">Data</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <tuplizer entity-mode="dynamic-map" class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
> <id type="long" name="idcol" column="idcol" access=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSy ntheticIdPropertyHandler ">
> <meta attribute="syntheticId">true</meta>
> <generator class="native"/>
> </id>
> <property name="resourceID" type=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOID UserType ">
> <column name="resource_id"/>
> </property>
> <property name="containerID" type="string">
> <column name="container_id"/>
> </property>
> <property name="version" type="java.lang.Integer">
> <meta attribute="version">true</meta>
> <column name="version"/>
> </property>
> <one-to-one name="d_cell" entity-name="Cell" cascade="merge,persist,save-update,lock" lazy="false" property-ref="c_data" constrained="true"/>
> <many-to-one name="value" entity-name="ValueType" cascade="all" not-null="true" lazy="false" insert="true" update="true" unique="true"/>
> </class>
>
>


Re: [CDO Hibernate] not-null property references a null or transient value [message #549885 is a reply to message #549844] Wed, 28 July 2010 10:40 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Bastien,
The vt_data is mapped as a one-to-one which makes it a mandatory field for hibernate I guess. This is caused by the
lowerBound="1" and the opposite is set.

To confirm, in your case the vt_data is null? So Hibernate sees the null value, or is it not null and does Hibernate see
a wrong value?

gr. Martin

On 07/28/2010 10:26 AM, Bastien wrote:
> Hi Martin and Eike,
> thanks for your reply, here are the relevant part of my metamodel and
> generated mapping. I still have the problem even after I changed to
> "R3_0_maintenance" branch , following Eike's advice.
>
> Regards,
> Bastien.
>
> <eClassifiers xsi:type="ecore:EClass" name="ValueType" abstract="true"
> <eStructuralFeatures xsi:type="ecore:EReference" name="vt_data"
> ordered="false"
> lowerBound="1" eType="#//Data" eOpposite="#//Data/value"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="StringValue"
> eSuperTypes="#//ValueType">
> <eStructuralFeatures xsi:type="ecore:EAttribute" name="value"
> ordered="false"
> lowerBound="1" eType="ecore:EDataType
> http://www.eclipse.org/emf/2002/Ecore#//EString"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="Data">
> <eStructuralFeatures xsi:type="ecore:EReference" name="d_cell"
> ordered="false"
> lowerBound="1" eType="#//Cell" eOpposite="#//Cell/c_data"/>
> <eStructuralFeatures xsi:type="ecore:EReference" name="value"
> ordered="false"
> lowerBound="1" eType="#//ValueType" containment="true"
> eOpposite="#//ValueType/vt_data"/>
> </eClassifiers>
>
>
>
> <class entity-name="ValueType" abstract="true" lazy="true"
> table="`valuetype`">
> <meta attribute="eclassName">ValueType</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <tuplizer entity-mode="dynamic-map"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <id type="long" name="idcol" column="idcol"
> access=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSy ntheticIdPropertyHandler ">
>
> <meta attribute="syntheticId">true</meta>
> <generator class="native"/>
> </id>
> <property name="resourceID"
> type=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOID UserType ">
>
> <column name="resource_id"/>
> </property>
> <property name="containerID" type="string">
> <column name="container_id"/>
> </property>
> <property name="version" type="java.lang.Integer">
> <meta attribute="version">true</meta>
> <column name="version"/>
> </property>
> <one-to-one name="vt_data" entity-name="Data"
> cascade="merge,persist,save-update,lock" lazy="false"
> property-ref="value" constrained="true"/>
> </class>
> <joined-subclass entity-name="StringValue" abstract="false" lazy="true"
> extends="ValueType" table="`stringvalue`">
> <meta attribute="eclassName">StringValue</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <tuplizer entity-mode="dynamic-map"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <key>
> <column name="`valuetype_e_id`"/>
> </key>
> <property name="value" lazy="false" insert="true" update="true"
> not-null="true" unique="false" type="java.lang.String">
> <column not-null="true" unique="false" name="`value`"/>
> </property>
> </joined-subclass>
> <class entity-name="Data" abstract="false" lazy="true" table="`data`">
> <meta attribute="eclassName">Data</meta>
> <meta attribute="epackage">http://SpreadsheetMLSimplified</meta>
> <tuplizer entity-mode="pojo"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <tuplizer entity-mode="dynamic-map"
> class=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDORe visionTuplizer "/>
>
> <id type="long" name="idcol" column="idcol"
> access=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOSy ntheticIdPropertyHandler ">
>
> <meta attribute="syntheticId">true</meta>
> <generator class="native"/>
> </id>
> <property name="resourceID"
> type=" org.eclipse.emf.cdo.server.internal.hibernate.tuplizer.CDOID UserType ">
>
> <column name="resource_id"/>
> </property>
> <property name="containerID" type="string">
> <column name="container_id"/>
> </property>
> <property name="version" type="java.lang.Integer">
> <meta attribute="version">true</meta>
> <column name="version"/>
> </property>
> <one-to-one name="d_cell" entity-name="Cell"
> cascade="merge,persist,save-update,lock" lazy="false"
> property-ref="c_data" constrained="true"/>
> <many-to-one name="value" entity-name="ValueType" cascade="all"
> not-null="true" lazy="false" insert="true" update="true" unique="true"/>
> </class>
>
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [CDO Hibernate] not-null property references a null or transient value [message #550009 is a reply to message #549885] Wed, 28 July 2010 17:33 Go to previous messageGo to next message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
Hi,

I am having the exact same issue. I step debugged the code and Hibernate does receive a null value. Since I am using Teneo 1.1.2 without CDO I guess the problem is not releated to CDO but Teneo only. When setting the lowerbound in the ECore Model of the bidirectional reference to 0 Hibernate does allow saving. But now the model itself is wrong.

Regards,
Hans

[Updated on: Wed, 28 July 2010 17:34]

Report message to a moderator

Re: [CDO Hibernate] not-null property references a null or transient value [message #550011 is a reply to message #550009] Wed, 28 July 2010 17:51 Go to previous messageGo to next message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
Here is an example ecore model:
<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
    xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
    nsURI="http://demo" nsPrefix="demo">
  <eClassifiers xsi:type="ecore:EClass" name="Animal">
    <eStructuralFeatures xsi:type="ecore:EReference" name="head" lowerBound="1" eType="#//Head"
        containment="true" eOpposite="#//Head/animal"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Head">
    <eStructuralFeatures xsi:type="ecore:EReference" name="animal" lowerBound="1"
        eType="#//Animal" eOpposite="#//Animal/head"/>
  </eClassifiers>
</ecore:EPackage>


I generated the java classes and then just try to instantiate and save the objects:

//...configure Teneo etc....
Session session = sessionFactory.openSession();
session.beginTransaction();
Animal a = DemoFactory.eINSTANCE.createAnimal();
Head h = DemoFactory.eINSTANCE.createHead();
a.setHead(h);
assert a.getHead() != null && h.getAnimal() != null;
session.save(a);
session.getTransaction().commit();
session.close();


This results in:
org.hibernate.PropertyValueException: not-null property references a null or transient value: Head.animal
	at org.hibernate.engine.Nullability.checkNullability(Nullability.java:101)
	at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:313)
	at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:204)
	at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:130)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:210)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:195)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.performSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:117)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:93)
	at org.hibernate.impl.SessionImpl.fireSaveOrUpdate(SessionImpl.java:677)
	at org.hibernate.impl.SessionImpl.saveOrUpdate(SessionImpl.java:669)
	at org.hibernate.engine.CascadingAction$5.cascade(CascadingAction.java:252)
	at org.hibernate.engine.Cascade.cascadeToOne(Cascade.java:392)
	at org.hibernate.engine.Cascade.cascadeAssociation(Cascade.java:335)
	at org.hibernate.engine.Cascade.cascadeProperty(Cascade.java:204)
	at org.hibernate.engine.Cascade.cascade(Cascade.java:161)
	at org.hibernate.event.def.AbstractSaveEventListener.cascadeBeforeSave(AbstractSaveEventListener.java:451)
	at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:288)
	at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:204)
	at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:130)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:210)
	at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:56)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:195)
	at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:50)
	at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:93)
	at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:705)
	at org.hibernate.impl.SessionImpl.save(SessionImpl.java:693)
	at org.hibernate.impl.SessionImpl.save(SessionImpl.java:689)
	at test.DemoTest.testTeneo(DemoTest.java:38)
Re: [CDO Hibernate] not-null property references a null or transient value [message #550109 is a reply to message #550011] Thu, 29 July 2010 07:41 Go to previous messageGo to next message
BastienFriend
Messages: 44
Registered: March 2010
Member
Hi Hans,
I solved my problem by removing the vt_data eOpposite reference

<eStructuralFeatures xsi:type="ecore:EReference" name="vt_data" ordered="false"
lowerBound="1" eType="#//Data" eOpposite="#//Data/value"/>

because its eOpposite reference is a containment one:

<eStructuralFeatures xsi:type="ecore:EReference" name="value" ordered="false"
lowerBound="1" eType="#//ValueType" containment="true" eOpposite="#//ValueType/vt_data"/>

the first one doesn't bring any information to my model. I am pretty sure of that because after removing this eOpposite reference, the model I used is still conform to the "eOpposite less" metamodel.

Regards,
Bastien.
Re: [CDO Hibernate] not-null property references a null or transient value [message #550132 is a reply to message #550011] Thu, 29 July 2010 08:59 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Hans,
Thanks for adding your experience to the thread also!

If the lowerbound is 1 then according to EMF the efeature is required. That's why the hibernate mapping has a not-null
constraint. Btw, you can override this by using an annotation appropriate for the efeature (for example @Basic or
@ManyToOne).

Then to your issue Hans. This is related to a bi-directional association where Hibernate will probably try to do first
an insert of both Head and Animal (with their referencing efeatures set to null) and then an update to set the
association between the two. This is the only way for Hibernate to store that info (it first needs to save the records
on both sides before it can create the association), so a bi-directional non-many association can not be mandatory (for
hibernate).
You can enter a feature request for this btw, as Teneo could detect this automatically and make the association
non-mandatory (on both or one side) for hibernate.

gr. Martin

On 07/28/2010 07:51 PM, Hans Meier wrote:
> Here is an example ecore model:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <ecore:EPackage xmi:version="2.0"
> xmlns:xmi="http://www.omg.org/XMI"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
> nsURI="http://demo" nsPrefix="demo">
> <eClassifiers xsi:type="ecore:EClass" name="Animal">
> <eStructuralFeatures xsi:type="ecore:EReference" name="head"
> lowerBound="1" eType="#//Head"
> containment="true" eOpposite="#//Head/animal"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="Head">
> <eStructuralFeatures xsi:type="ecore:EReference" name="animal"
> lowerBound="1"
> eType="#//Animal" eOpposite="#//Animal/head"/>
> </eClassifiers>
> </ecore:EPackage>
>
>
> I generated the java classes and then just try to instantiate and save
> the objects:
>
>
> //...configure Teneo etc....
> Session session = sessionFactory.openSession();
> session.beginTransaction();
> Animal a = DemoFactory.eINSTANCE.createAnimal();
> Head h = DemoFactory.eINSTANCE.createHead();
> a.setHead(h);
> assert a.getHead() != null && h.getAnimal() != null;
> session.save(a);
> session.getTransaction().commit();
> session.close();
>
>
> This results in:
>
> org.hibernate.PropertyValueException: not-null property references a
> null or transient value: Head.animal
> at org.hibernate.engine.Nullability.checkNullability(Nullabilit y.java:101)
> at
> org.hibernate.event.def.AbstractSaveEventListener.performSav eOrReplicate(AbstractSaveEventListener.java:313)
>
> at
> org.hibernate.event.def.AbstractSaveEventListener.performSav e(AbstractSaveEventListener.java:204)
>
> at
> org.hibernate.event.def.AbstractSaveEventListener.saveWithGe neratedId(AbstractSaveEventListener.java:130)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.sav eWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener .java:210)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.ent ityIsTransient(DefaultSaveOrUpdateEventListener.java:195)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.per formSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:117)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onS aveOrUpdate(DefaultSaveOrUpdateEventListener.java:93)
>
> at org.hibernate.impl.SessionImpl.fireSaveOrUpdate(SessionImpl. java:677)
> at org.hibernate.impl.SessionImpl.saveOrUpdate(SessionImpl.java :669)
> at org.hibernate.engine.CascadingAction$5.cascade(CascadingActi on.java:252)
> at org.hibernate.engine.Cascade.cascadeToOne(Cascade.java:392)
> at org.hibernate.engine.Cascade.cascadeAssociation(Cascade.java :335)
> at org.hibernate.engine.Cascade.cascadeProperty(Cascade.java:20 4)
> at org.hibernate.engine.Cascade.cascade(Cascade.java:161)
> at
> org.hibernate.event.def.AbstractSaveEventListener.cascadeBef oreSave(AbstractSaveEventListener.java:451)
>
> at
> org.hibernate.event.def.AbstractSaveEventListener.performSav eOrReplicate(AbstractSaveEventListener.java:288)
>
> at
> org.hibernate.event.def.AbstractSaveEventListener.performSav e(AbstractSaveEventListener.java:204)
>
> at
> org.hibernate.event.def.AbstractSaveEventListener.saveWithGe neratedId(AbstractSaveEventListener.java:130)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.sav eWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener .java:210)
>
> at
> org.hibernate.event.def.DefaultSaveEventListener.saveWithGen eratedOrRequestedId(DefaultSaveEventListener.java:56)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.ent ityIsTransient(DefaultSaveOrUpdateEventListener.java:195)
>
> at
> org.hibernate.event.def.DefaultSaveEventListener.performSave OrUpdate(DefaultSaveEventListener.java:50)
>
> at
> org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onS aveOrUpdate(DefaultSaveOrUpdateEventListener.java:93)
>
> at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:705 )
> at org.hibernate.impl.SessionImpl.save(SessionImpl.java:693)
> at org.hibernate.impl.SessionImpl.save(SessionImpl.java:689)
> at test.DemoTest.testTeneo(DemoTest.java:38)
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [CDO Hibernate] not-null property references a null or transient value [message #550133 is a reply to message #550109] Thu, 29 July 2010 09:00 Go to previous messageGo to next message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
Hi Bastien,

the problem with your workaround is, if I change the model from:

<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
    xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
    nsURI="http://demo" nsPrefix="demo">
  <eClassifiers xsi:type="ecore:EClass" name="Animal">
    <eStructuralFeatures xsi:type="ecore:EReference" name="head" lowerBound="1" eType="#//Head"
        containment="true" eOpposite="#//Head/animal"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Head">
    <eStructuralFeatures xsi:type="ecore:EReference" name="animal" lowerBound="1"
        eType="#//Animal" eOpposite="#//Animal/head"/>
  </eClassifiers>
</ecore:EPackage>


to

<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0"
    xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
    nsURI="http://demo" nsPrefix="demo">
  <eClassifiers xsi:type="ecore:EClass" name="Animal">
    <eStructuralFeatures xsi:type="ecore:EReference" name="head" lowerBound="1" eType="#//Head"
        containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Head"/>
</ecore:EPackage>


the generated interface "Head" misses the typed container getter getAnimal() and
I have to use the untyped eContainer() method of the Head implementation class.

Since XMI serialization also works without the workaround I still think it's a bug in Teneo, but I'd like to hear Martin's opinion on this.

Regards,
Hans
Re: [CDO Hibernate] not-null property references a null or transient value [message #550136 is a reply to message #550133] Thu, 29 July 2010 09:18 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Hans,
See my reply one minute before yours!

gr. Martin

On 07/29/2010 11:00 AM, Hans Meier wrote:
> Hi Bastien,
>
> the problem with your workaround is, if I change the model from:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <ecore:EPackage xmi:version="2.0"
> xmlns:xmi="http://www.omg.org/XMI"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
> nsURI="http://demo" nsPrefix="demo">
> <eClassifiers xsi:type="ecore:EClass" name="Animal">
> <eStructuralFeatures xsi:type="ecore:EReference" name="head"
> lowerBound="1" eType="#//Head"
> containment="true" eOpposite="#//Head/animal"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="Head">
> <eStructuralFeatures xsi:type="ecore:EReference" name="animal"
> lowerBound="1"
> eType="#//Animal" eOpposite="#//Animal/head"/>
> </eClassifiers>
> </ecore:EPackage>
>
> to
>
> <?xml version="1.0" encoding="UTF-8"?>
> <ecore:EPackage xmi:version="2.0"
> xmlns:xmi="http://www.omg.org/XMI"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="demo"
> nsURI="http://demo" nsPrefix="demo">
> <eClassifiers xsi:type="ecore:EClass" name="Animal">
> <eStructuralFeatures xsi:type="ecore:EReference" name="head"
> lowerBound="1" eType="#//Head"
> containment="true"/>
> </eClassifiers>
> <eClassifiers xsi:type="ecore:EClass" name="Head"/>
> </ecore:EPackage>
>
> the generated interface "Head" misses the typed container getter
> getAnimal() and I have to use the untyped eContainer() method of the
> Head implementation class.
>
> Since XMI serialization also works without the workaround I still think
> it's a bug in Teneo, but I'd like to hear Martin's opinion on this.
>
> Regards,
> Hans


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [CDO Hibernate] not-null property references a null or transient value [message #550140 is a reply to message #550132] Thu, 29 July 2010 09:29 Go to previous messageGo to next message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
Hi Martin,

thanks for your response. I just filed bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=321197


Regards,
Hans
Re: [CDO Hibernate] not-null property references a null or transient value [message #550309 is a reply to message #550132] Thu, 29 July 2010 20:58 Go to previous messageGo to next message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
I solved the problem temporarly by patching the org.eclipse.emf.teneo.hibernate.mapper.OneToOneMapper class and changing:
if (addConstrained) associationElement.addAttribute("constrained", "true");

to
if (addConstrained && !eref.isContainment()) associationElement.addAttribute("constrained", "true");


and registering a custom SaveOrUpdateEvent listener with Hibernate, that validates EObject incl. the mandatory 1-1 reference.

	public static final class MyValidator implements SaveOrUpdateEventListener
	{
		public void onSaveOrUpdate(SaveOrUpdateEvent event) throws HibernateException
		{
			Object obj = event.getObject();
			if (obj instanceof EObject)
			{
				EObject eObject = (EObject) obj;
				Diagnostic diag = Diagnostician.INSTANCE.validate(eObject);
				if (diag.getSeverity() == Diagnostic.ERROR) throw new InvalidModelException(diag);
			}
		}
	}
Re: [CDO Hibernate] not-null property references a null or transient value [message #550327 is a reply to message #550309] Thu, 29 July 2010 22:32 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Hans,
Instead of patching the OneToOneMapper you can also replace it using the Teneo extension mechanism with your own
implementation of the OneToOneMapper. See here for more info:
http://wiki.eclipse.org/Teneo/Hibernate/Extensions

gr. Martin

On 07/29/2010 10:58 PM, Hans Meier wrote:
> I solved the problem temporarly by patching the
> org.eclipse.emf.teneo.hibernate.mapper.OneToOneMapper class and changing:
>
> if (addConstrained) associationElement.addAttribute("constrained", "true");
>
> to
>
> if (addConstrained && !eref.isContainment())
> associationElement.addAttribute("constrained", "true");
>
>
> and registering a custom SaveOrUpdateEvent listener with Hibernate, that
> validates EObject incl. the mandatory 1-1 reference.
>
>
> public static final class MyValidator implements SaveOrUpdateEventListener
> {
> public void onSaveOrUpdate(SaveOrUpdateEvent event) throws
> HibernateException
> {
> Object obj = event.getObject();
> if (obj instanceof EObject)
> {
> EObject eObject = (EObject) obj;
> Diagnostic diag = Diagnostician.INSTANCE.validate(eObject);
> if (diag.getSeverity() == Diagnostic.ERROR) throw new
> InvalidModelException(diag);
> }
> }
> }
>


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Cell: +31 (0)6 288 48 943
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
icon14.gif  Re: [CDO Hibernate] not-null property references a null or transient value [message #550386 is a reply to message #550327] Fri, 30 July 2010 08:32 Go to previous message
Hans Meier is currently offline Hans MeierFriend
Messages: 8
Registered: July 2009
Junior Member
Hi Martin,

that is very cool and solves the problem with the signed jars Smile

I now did:

dataStore.getExtensionManager().registerExtension(org.eclipse.emf.teneo.hibernate.mapper.OneToOneMapper.class.getName(), ImprovedOneToOneMapper.class.getName());


Regards,

Hans
Previous Topic:Opening a view when an EMF Generated editor opens
Next Topic:directory.txt is missing in download page
Goto Forum:
  


Current Time: Sat May 11 02:26:19 GMT 2024

Powered by FUDForum. Page generated in 0.06292 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top