我有一些工作代码,但我对GORM和级联保存有点模糊。这是我的对象模型:
class Profile {
PhotoAlbum photoAlbum
static constraints = {
photoAlbum(nullable:true)
}
}
class PhotoAlbum {
static hasMany = [photos:Photo]
static belongsTo = [profile:Profile]
}
class Photo {
static belongsTo = PhotoAlbum
}
这是我保存新照片对象的工作代码:
Photo photo = new Photo()
if (!profile.photoAlbum) { profile.photoAlbum = new PhotoAlbum(profile:profile) }
profile.photoAlbum.addToPhotos(photo)
if (!photo.save()) {
def json = [
status:'fail',
message:messageSource.getMessage('label.photo.validate.failed.message', [photo.errorStrings].toArray(), LocaleContextHolder.locale)
]
return json
}
if (!profile.photoAlbum.save()) {
def json = [
status:'fail',
message:messageSource.getMessage('label.photo.validate.failed.message', [profile.photoAlbum.errorStrings].toArray(), LocaleContextHolder.locale)
]
return json
}
if (!profile.save()) {
def json = [
status:'fail',
message:messageSource.getMessage('label.photo.validate.failed.message', [profile.errorStrings].toArray(), LocaleContextHolder.locale)
]
return json
}
else {
def json = [
status:'success',
message:messageSource.getMessage('label.photo.insert.success.message', null, LocaleContextHolder.locale)
]
return json
}
似乎有很多代码和错误检查来保存新的照片对象。当我在网站和书籍中查看grails示例时,我没有看到很多错误检查。在我的情况下,如果无法保存照片,则服务必须将json错误字符串返回给客户端。我已经阅读了GORM Gotchas 2帖子,但我仍然不清楚级联保存。
我确实发现如果我不调用photo.save()和profile.photoAlbum.save()并调用profile.save(),我会得到瞬态异常。所以我添加了photo.save()和profile.photoAlbum.save()以使一切正常。
答案 0 :(得分:1)
正如@Cregg所提到的,您应该将所有逻辑都移到服务中,以便在一个事务中处理对DB的所有调用。要获得瞬态异常,请尝试使用以下命令:
profile.save(flush: true, failOnError:true)
您应该创建ErrorController
来处理所有异常。请参阅example。