2009.12.31(4)——不能把null赋给简单类型

2009.12.31(4)——不能把null赋给简单类型
今天做junit测试ST_SOIL_R类,老是出现错误,如下:
Null value was assigned to a property of primitive type setter of pojo.ST_SOIL_R.PINTV
因为我的这个pintv是一个int类型的,但是数据库里面查出来的数据有空值的,它不能把null赋给一个int类型,所以要换位Integer类型就解决了

你可能感兴趣的:(JUnit)