-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 
Author Message
 Post subject: How to map primitive type property to allow to take NULL
PostPosted: Mon Jan 28, 2008 11:18 am 
Newbie

Joined: Wed Dec 19, 2007 11:04 am
Posts: 10
Hi,

I have a field in SQL DB as integer type; so i have kept int type property in my model to hold the values.

But the field in the DB can have value "NULL" since it is optional field. When i run select query and try to save in the MODEL, i am getting following error.

"PropertyAccessException: Null value was assigned to a property of primitive type setter"

I have kept the following code on top of the field.


@Column(nullable=true)
int uiAdjId;


Still i am getting same error.

Please help me to resolve this.

Thanks,
Laks


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 28, 2008 11:57 am 
Newbie

Joined: Mon Mar 27, 2006 8:21 pm
Posts: 4
The only way I know to get around this is to have an java.lang.Integer field in your object. That way it is an object reference that can be null. You get still have a getter/setter that take and return primitive values (i.e., int) so these change is isolated. You just map the column to the private Integer field.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 28, 2008 12:24 pm 
Newbie

Joined: Wed Dec 19, 2007 11:04 am
Posts: 10
Hi,

It is working fine.

Thanks for your assistance.

Laks,


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 28, 2008 12:34 pm 
Newbie

Joined: Thu Aug 30, 2007 9:14 am
Posts: 6
When I'm creating an Entity and I have to choose between Long or long, what should I consider?
Is there any more than just considering if I need a nullable / not nullable column?

Thanks


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 28, 2008 12:43 pm 
Newbie

Joined: Mon Mar 27, 2006 8:21 pm
Posts: 4
I tend to like primitive mutable data (i.e., long) rather than non-mutable objects (i.e., Long) but it probably makes little difference unless you are working with very large volumes of data. Every time you assign value to a Long or modify the value of a Long (a new Long object is created) so you have more garbage collection overhead. Again, it probably doesn't matter much unless you have very large data volumes. My background is with performance measurements which tend to be very voluminous thus explaining my bias for primitive data.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.