我正在尝试在集成测试环境中运行测试用例。
在使用中,executeUpdate
已被使用:
def update1 = Abc.executeUpdate("update Abc a set a.changeStatus = :status,a.remarks=:remarks where a.id =:id",[status: "Verified",id:1,remarks:remarks])
但是在运行服务的集成测试时,我收到以下错误:
java.lang.UnsupportedOperationException:基于字符串的查询,如 [executeUpdate]目前在此实现中不受支持 GORM。改为使用标准。
我正在使用 Grails 2.4.2 。