我正在使用grails 2.4.5版本。我在保存时正在检查状况。如果我的条件匹配,我将尝试返回一条消息而不是保存。但这向我显示了我想要的消息,但同时将对象属性保存到数据库中。有人可以帮我吗?这是我的以下代码:
@Transactional
def save(AccountHead accountHeadInstance) {
if (!request.method.equals('POST')) {
redirect(action: 'index')
return
}
LinkedHashMap result = new LinkedHashMap()
String outPut
if (accountHeadInstance.id) {
if (accountHeadInstance.id == accountHeadInstance.subParentId) {
result.put(CommonUtils.IS_ERROR, Boolean.TRUE)
result.put(CommonUtils.MESSAGE, "Sorry, Same account can not be parent of it's own")
outPut = result as JSON
render outPut
return
// here should it return, is shows the message ok but saving the object. if I print something after this block it does not execute
}
}
if (accountHeadInstance.hasErrors()) {
def errorList = accountHeadInstance?.errors?.allErrors?.collect{messageSource.getMessage(it,null)}
result.put(CommonUtils.IS_ERROR, Boolean.TRUE)
result.put(CommonUtils.MESSAGE, errorList?.join('\n'))
outPut = result as JSON
render outPut
return
}
accountHeadInstance.hasChild = params.position == CommonUtils.POSITION_FIRST
accountHeadInstance.save flush:true
result.put(CommonUtils.MESSAGE, "Account head saved successfully.")
outPut = result as JSON
render outPut
return
}
答案 0 :(得分:1)
好,您正在使用@Transactional,因此对域对象的任何更改都会将该对象设置为脏对象,并且在事务结束时,将隐式保存它们。为了防止这种情况,您可以使用accountHeadInstance.discard()。
但是我不得不告诉您,您的代码是几种Grails反模式。
任何特别是使用@Transactional的业务逻辑都应移至服务,而不应在控制器中完成。控制器应该只用于绑定传入的参数,路由到服务以及发送结果。
虽然可以将域用作命令对象绑定参数,但从安全角度来看,通常不是一个好主意。
您也可以选择执行“ Groovy”这样的操作:
LinkedHashMap result = [:]
result[CommonUtils.IS_ERROR] = Boolean.TRUE)
render result as JSON