Could not detemine type for : String ,for columns
エラー:
Caused by: org.hibernate.MappingException: Could not determine type for: String, for columns: [org.hibernate.mapping.Column(FeeTime)]
解決方法:
typeはhibernateのタイプを指し、javaのStringタイプではなく、小文字でなければなりません.
上は間違っています.下は正しいです.
Caused by: org.hibernate.MappingException: Could not determine type for: String, for columns: [org.hibernate.mapping.Column(FeeTime)]
解決方法:
typeはhibernateのタイプを指し、javaのStringタイプではなく、小文字でなければなりません.
<property column="FeeTime" length="8" name="feeTime" not-null="true" type="String"/>
上は間違っています.下は正しいです.
<property column="FeeTime" length="8" name="feeTime" not-null="true" type="string"/>