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 675
长情又很酷
长情又很酷 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:39

    @Dinh Nhat, your setter method looks wrong because you put a primitive type there again and it should be:

    public void setClient_os_id(Integer clientOsId) {
    client_os_id = clientOsId;
    }
    

提交回复
热议问题