我在尝试更新 Grails 2.3.7 项目的记录时遇到问题
我不想修改属于复合 ID 的字段,我只想更新其他字段。
只有一个类,几个属性,但是每次我尝试更新时,当此行运行时,它都会给我抛出"非唯一错误":
personInstance.validate()
if (personInstance.hasErrors()) {
respond personInstance.errors, view:'create'
return
}
我的类看起来像这样:
class Person implements Serializable {
static constraints = {
name(unique: lastName)
}
static mapping = {
id generator: 'assigned'
id composite: ["name", "lastName"]
}
//Override equals and hashcode methods
boolean equals(other) {
if (!(other instanceof Person)) {
return false
}
other.name == name && other.lastName == lastName
}
int hashCode() {
def builder = new HashCodeBuilder()
builder.append name
builder.append lastName
builder.toHashCode()
}
String name
String lastName
String description
}
控制器动作:
def update() {
def personInstance = Person.get(new Person(name:params.name, lastName:params.lastName))
personInstance.properties = params
personInstance.validate()
if (personInstance.hasErrors()) {
respond personInstance.errors, view:'create'
return
}
personInstance.save flush:true
request.withFormat {/*etc...*/}
}
当我使用 validate() 时,它会给我抛出一个 Grails 唯一键错误,当我避免验证时,它是一个 BD 而不是唯一的 PK 错误。就像 Grails 不知道我是否要插入或更新当我 personInstance.validate() 时。
有没有办法以我没有看到的正确方式管理它?还是我被迫避免验证?我做错了什么吗?
提前谢谢。
我相信GORM映射DSL只需要一个id
定义。尝试将两条id
行合并为以下行:
id generator: 'assigned', composite: ["name", "lastName"]
此外,除了实现Serializable
之外,您的域类还应覆盖 equals
和 hashCode
,如以下"复合主键"中所述:http://grails.org/doc/latest/guide/single.html#identity