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 703
长情又很酷
长情又很酷 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:17

    According to this SO thread, the solution is to use the non-primitive wrapper types; e.g., Integer instead of int.

提交回复
热议问题