我的 Grails 应用程序运行良好。如果我没记错的话,我所做的就是将我的一个域类的约束从blank: true, nullable:true更改为blank:false, nullable: false。现在,当我尝试创建该类的新实例时,我收到以下错误消息:
Property [contract] of class [class com.app.Request] cannot be null
Property [description] of class [class com.app.Request] cannot be null
Property [productline] of class [class com.app.Request] cannot be null
Property [requestType] of class [class com.app.Request] cannot be null
Property [subject] of class [class com.app.Request] cannot be null
我已经为所有这些属性提供了值。
我猜gorm和数据库之间存在一些冲突。有人可以向我解释发生了什么以及如何解决它。