国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php框架 > 框架设计 > org.hibernate.MappingException

org.hibernate.MappingException

来源:程序员人生   发布时间:2015-01-08 13:39:39 阅读次数:3020次

1、毛病描写

org.springframework.beans.factory.BeanCreationException:Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]:Invocation of init method failed;nested exception is org.hibernate.MappingException:Could not determine type for:java.lang.int,at table:T_STU_TAB,for columns:[org.hibernate.mapping.Column(STU_AGE)]


2、毛病缘由

<property name="stuAge" type="java.lang.int">

        <column name="STU_AGE" length="3"/>

</property>


3、解决办法

<property name="stuAge" type="java.lang.Integer">

        <column name="STU_AGE" length="3"/>

</property>



生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生