-->
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.  [ 3 posts ] 
Author Message
 Post subject: PropertyNotFoundException: Could not find a getter
PostPosted: Wed Nov 05, 2003 8:16 am 
Newbie

Joined: Wed Oct 01, 2003 1:12 pm
Posts: 9
Hi everybody!
I'm getting the following error:
Code:
net.sf.hibernate.PropertyNotFoundException: Could not find a getter for kFactor in class xxx.Share


My hbm.xml contains:

Code:
    <property
        name="kFactor"
        type="java.math.BigDecimal"
        column="K_Factor"
        length="15"
    />


and the java class is:

Code:
    private BigDecimal kFactor;

    public BigDecimal getKFactor() {
        return this.kFactor;
    }

    public void setKFactor(BigDecimal kFactor) {
        this.kFactor = kFactor;
    }


Both java and xml were generated by Hibernate tools, and they seem correct to me, but I think there is some kind of problem with the lowercase/uppercase.

Thanks in advance for your attention and help!


Top
 Profile  
 
 Post subject:
PostPosted: Wed Nov 05, 2003 8:24 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 12:50 pm
Posts: 5130
Location: Melbourne, Australia
<property name="KFactor"/>


Top
 Profile  
 
 Post subject:
PostPosted: Wed Nov 05, 2003 11:09 am 
Newbie

Joined: Wed Oct 01, 2003 1:12 pm
Posts: 9
gavin wrote:
<property name="KFactor"/>


Thanks Gavin.
Do you think it could be a bug of the roundtrip Hibernate tools ?


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 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.