首页 > 移动平台 > 详细

org.hibernate.MappingException

时间:2014-12-31 22:51:59      阅读:484      评论:0      收藏:0      [点我收藏+]

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>



org.hibernate.MappingException

原文:http://blog.csdn.net/you23hai45/article/details/42301375

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!