码迷,mamicode.com
首页 > 其他好文 > 详细

ssh框架搭建出现的异常: class com.my.entity.user not found while looking for property: id

时间:2018-02-11 19:48:25      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:机制   字段   实体   get   例子   不必要   nbsp   代码   password   

在处理用户注册的时候,user实体的bean创建不出来,原代码如下:

<class name="com.my.entity.User" table="user">
           <!-- name:指定Product类中的属性名
                column:指定为id的字段名 
                generator:生成策略为本地(默认自动增长)
           -->
        <id name="id" column="id">
            <generator class="native"/><!-- 主键生成机制,自动根据本地的情况生成 -->
        </id>
        <property name="username" column="username" length="20"/>
        <property name="password" column="password"/>
    </class>

在网上查找前辈的经验,有一个例子说要加上属性的类型:

<class name="com.my.entity.User" table="user">
           <!-- name:指定Product类中的属性名
                column:指定为id的字段名 
                generator:生成策略为本地(默认自动增长)
           -->
        <id name="id" column="id"  type="java.lang.Integer">
            <generator class="native"/><!-- 主键生成机制,自动根据本地的情况生成 -->
        </id>
        <property name="username" column="username" length="20" type="java.lang.String"/>
        <property name="password" column="password" length="20" type="java.lang.String"/>
    </class>

结果还是报错:然后又查到一个可能的原因是我改过实体类的id的类型,将int改为了Integer,但是下面的set方法可能没改对,然后就重写了一遍get,set方法,然后就可以正常运行了,下次写数据类型的时候,一定要谨慎,避免这种中途更换带来的不必要的bug;

    

 

ssh框架搭建出现的异常: class com.my.entity.user not found while looking for property: id

标签:机制   字段   实体   get   例子   不必要   nbsp   代码   password   

原文地址:https://www.cnblogs.com/anningkang/p/8442870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!