Could not determine type for: String, for columns: [org.hibernate.mapping.Column

Could not determine type for: String, for columns: [org.hibernate.mapping.Column(CARDTYPE)]

 

在hibernate 框架启动时,提示如上信息,意思是说在hibernate配置文件中,字段cardtype的类型出错,

 

type指的是hibernate中的类型,不是java中的String类型,必须小写

在表的hbm.xml 中

由:

<property name="cardtype" column="CARDTYPE" type="String" not-null="false" length="11"  />

 

改成:

 

 

<property name="cardtype" column="CARDTYPE" type="string" not-null="false" length="11"  />

 

你可能感兴趣的:(Hibernate)