-1
每當我啓動grails應用程序時,它都有這個錯誤信息,我不知道爲什麼?Grails啓動應用程序
|錯誤2014-03-06 19:30:55,494 [localhost-startStop-1]錯誤context.GrailsContextLoader - 初始化應用程序時出錯:無法解析屬性:location:tutor.com.Tutor;嵌套異常是org.hibernate.QueryException:無法解析屬性:位置:tutor.com.Tutor 消息:無法解析屬性:位置:tutor.com.Tutor;嵌套的例外是org.hibernate.QueryException:無法解析屬性:位置:tutor.com.Tutor
這是我tutor.com.Tutor域:
package tutor.com
class Tutor {
String description
String qualifications
String experience
double feedback
int rate
User user
static hasMany = [ subjects: Subject ]
static mapping={
description(sqlType: 'text')
}
static constraints = {
feedback(nullable:true)
}
}
您是否試圖在Bootstrap.groovy中創建一些Tutors對象? –
是你的包是否正確? –