vote up 1 vote down star

I have a class that looks like the following:

public class MyClass {
    private String dPart1;

    public String getDPart1() {
    	return dPart1;
    }

    public void setDPart1(String dPart1) {
    	this.dPart1 = dPart1;
    }
}

My hibernate mapping file maps the property as follows:

<property name="dPart1" not-null="true"/>

I get the following error:

org.hibernate.PropertyNotFoundException: Could not find a getter for dPart1 in class com.mypackage.MyClass
        at org.hibernate.property.BasicPropertyAccessor.createGetter(BasicPropertyAccessor.java:282)
        at org.hibernate.property.BasicPropertyAccessor.getGetter(BasicPropertyAccessor.java:275)
        at org.hibernate.mapping.Property.getGetter(Property.java:272)
        at org.hibernate.tuple.entity.PojoEntityTuplizer.buildPropertyGetter(PojoEntityTuplizer.java:247)
        at org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:125)
        at org.hibernate.tuple.entity.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)
        at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)
        at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:302)
        at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:434)
        at

It appears that hibernate doesn't like my capitalization. How should I fix this?

flag

79% accept rate

5 Answers

vote up 3 vote down check
<property name="DPart1" not-null="true"/>

should work...

link|flag
I am also facing the problem and the above solutions works fine for me. Now what I would like to know is is it java specification for setter getter methods or is it jboss specific implementation for hibernate? Thank you for your answer :) – Vineyard Nov 15 at 6:44
vote up 1 vote down

Can't you just access it like a field?

access="field"

link|flag
vote up 0 vote down

for a property called "dPart1" a hibernate will try a getter named "getDpart1" not "getDPart1" IIRC

link|flag
vote up 0 vote down

I am facing same problem.

link|flag
vote up 0 vote down

I got the solution

Please make dPart1 to dpart1 and change the getter and setter again..

It is working for me now.

Remember to change the xml also.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.