我必须验证eventId的值是否已存在于mysql数据库中。我有一个事件数据库,其中id存储在event_id中。所以我需要验证这个eventId是否已经存在。
域类:
class Event {
String eventId
static constraints = {
eventId(blank: false,nullable: false)
eventId validator: {val ->
if(val== event.event_id){
return false
}
}
最佳答案
您应该使用grails提供的唯一约束
例如
static constraints = {
eventId unique: true
}
关于grails - 域类中的验证,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25970353/