I have a domain class named Project :
class Project {
static hasMany = [ tasks : Tasks , users : User ]
static belongsTo = User
String name
static constraints = {
name(nullable:false,unique:true, size:5..20)
tasks(nullable:true)
users(nullable:true)
}
String toString() {
this.name
}
}
I use the following code to save the Project instances:
def save() {
def user = User.get(springSecurityService.principal.id)
def projectInstance = new Project(params)
projectInstance.addToUsers(user)
if (!projectInstance.save(flush: true)) {
render(view: "create", model: [projectInstance: projectInstance])
return
}
flash.message = message(code: 'default.created.message', args: [message(code: 'project.label', default: 'Project'), projectInstance.id])
redirect(action: "showCreatedProject", id: projectInstance.id)
}
The above code works fine if I give a Project name, which passes the domain class validation. But if I give something like fail as Project name (which fails the domain class validation) I get an error like this :
Message: null id in mnm.schedule.Project entry (don't flush the Session after an exception occurs)
Trace: Line | Method
->> 886 | runTask in java.util.concurrent.ThreadPoolExecutor$Worker
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| 908 | run in ''
^ 662 | run . . in java.lang.Thread
I'm very new to Grails, I don't know why this error occurs. How I can get rid of this error?
Thanks in advance.
projectInstance.addToUsers(user)line. When I comment out this line everything works fine. But I don't know how to keep that line and still escape from that error! – Ant's Mar 11 '12 at 5:33addTobeforesave:) i've added it as answer – Igor Artamonov Mar 11 '12 at 14:42