码迷,mamicode.com
首页 > 移动开发 > 详细

org.hibernate.MappingException

时间:2014-12-31 22:53:13      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:java   hibernate   spring   struts2   

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

标签:java   hibernate   spring   struts2   

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

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