我使用域類找到時,有一個問題:的參數沒有指定值 - Grails的
我得到的錯誤是: ERROR util.JDBCExceptionReporter - No value specified for parameter 2
域名類:
class AppDetail {
String name
String url
Boolean active
static hasMany = [authString:AppIdentifier]
static constraints = {
name(unique:true,blank:false)
active(nullable:true)
}
class AppIdentifier {
Date added
String authString
static belongsTo = [authString:AppDetail]
static constraints = {
added()
authString(blank:false)
}
的找到是:
def identifier = AppIdentifer.findByAuthString('test')
def appDetails = AppDetail.findByAuthString(identifier)
任何人都可以親提供任何洞察這個錯誤的含義?
在此先感謝!