欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

org.hibernate.PropertyNotFoundException: Could not find a setter for HibernateJavaAccessXML 

程序员文章站 2022-03-03 21:36:55
...
问题:org.hibernate.PropertyNotFoundException:   Could   not   find   a   setter   for   property   id   in   class

我的原因是: hbm.xml中 少了access="field"如:
 <property name="parentDpId" type="java.lang.String" access="field">
            <column name="PARENTDPID" length="32">
                <comment>上级组织架构的ID</comment>
            </column>
        </property>