Why do I get a “Null value was assigned to a property of primitive type setter of” error message when using HibernateCriteriaBuilder in Grails

后端 未结 12 679
长情又很酷
长情又很酷 2021-01-30 07:58

I get the following error when using a primitive attribute in my grails domain object:

Null value was assigned to a property of primitive type setter of MyDomain         


        
12条回答
  •  孤独总比滥情好
    2021-01-30 08:34

    Do not use primitives in your Entity classes, use instead their respective wrappers. That will fix this problem.

    Out of your Entity classes you can use the != null validation for the rest of your code flow.

提交回复
热议问题