我正在尝试通过保存域对象来调试一个简单的问题。
class AppRideOfferController {
def index() {}
def create() {
if(params.fromAddr && params.toAddr && params.preferences && params.startDate) {
RideOffer rideOffer = new RideOffer(startLocation: params.fromAddr, endLocation: params.toAddr, startDateTime: new Date(Integer.parseInt((String) params.startDate)));
rideOffer.save(flush: true);
//assert(rideOffer.id);
log.info("blah");
render(contentType:"text/json") {
result(blah: rideOffer)
};
}
}
}
在上面的代码中,我只是创建一个域对象,保存它,并将其作为json返回,并在其中生成id。但是,如果我取消注释资产声明,它将失败,因为未设置id。
我在控制台上没有出现任何错误,所以我想知道如何在stdout上获得运行时错误堆栈跟踪?我的Config.groovy的log4j配置如下所示:
log4j = {
// Example of changing the log pattern for the default console appender:
//
appenders {
console name:'stdout', layout:pattern(conversionPattern: '%c{2} %m%n')
}
info 'grails.app.controllers',
'grails.app.controller',
'grails.app';
error 'org.codehaus.groovy.grails.web.servlet', // controllers
'org.codehaus.groovy.grails.web.pages', // GSP
'org.codehaus.groovy.grails.web.sitemesh', // layouts
'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
'org.codehaus.groovy.grails.web.mapping', // URL mapping
'org.codehaus.groovy.grails.commons', // core / classloading
'org.codehaus.groovy.grails.plugins', // plugins
'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
'org.springframework',
'org.hibernate',
'net.sf.ehcache.hibernate'
}
答案 0 :(得分:1)
如果您的代码生成运行时错误,您将看到error.gsp
视图。在文档中,您可以看到save()
不会产生异常,但会填充在您的域类验证中可能发生的errors
。如果您generate your controller,您将看到如何处理保存方法中的错误。
类似的东西:
def save() {
if(!instance.save(flush:true)) {
//instance fails in validation, you need to respond those errors
Locale locale = RequestContextUtils.getLocale(request) //Locale of the user
render([success: false, errors: errorsToMap(instance.errors, locale)]) as JSON
} else {
render([success: true, record: instance]) as JSON
}
}
//just a helper to format the errors output
private List<Map> errorsToMap(Errors errors, Locale locale) {
def error = []
for(def err : errors.allErrors) {
if(err instanceof FieldError) {
error << [id: err.field, msg: Holders.grailsApplication.mainContext.getMessage(err, locale)]
}
}
return error
}
Holders
,JSON
和RequestContextUtils
默认可用。
答案 1 :(得分:-1)
尝试替换rideOffer.save(flush:true); with rideOffer.save(flush:true,failOnError:true);你应该在控制台中看到错误