今天工作的时候遇到一异常

一个新系统,测试没有问题,但是导入一批老数据后,总是莫名其妙的出现异常,今天又遇到一个:

org.apache.tapestry.ApplicationRuntimeException
exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.cofortune.oil.model.OilRoRetailApp.setDiesVolume; nested exception is org.hibernate.PropertyAccessException: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.cofortune.oil.model.OilRoRetailApp.setDiesVolume
component: com.cofortune.oil.page.mofcom.RoretailliwzList$Enhance_738@ec4462[RoretailliwzList]
location: context:/WEB-INF/page/mofcom/RoretailliwzList.page, line 6, column 76

org.springframework.orm.hibernate3.HibernateSystemException
exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.cofortune.oil.model.OilRoRetailApp.setDiesVolume; nested exception is org.hibernate.PropertyAccessException: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.cofortune.oil.model.OilRoRetailApp.setDiesVolume

org.hibernate.PropertyAccessException
exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.cofortune.oil.model.OilRoRetailApp.setDiesVolume
messages: [Ljava.lang.String;@e75147
persistentClass: class com.cofortune.oil.model.OilRoRetailApp
propertyName: setDiesVolume
throwableCount: 3
throwables: [Ljava.lang.Throwable;@892a87

net.sf.cglib.beans.BulkBeanException

index: 3

查了一下,是因为查询结果中包含null项,而我的model中diesVolume 属性是int类型的,而该字段在数据库中正好是空的(null).所以抛出异常。

解决方法:
1、将数据库的该字段的值默认为0 ----最最恶心的解决方法,不幸被我采用了。

2、对于一些数字项包含null,model中定义该项时必须使用wrapper类型,而不能是primitive类型,例如使用Integer等,而不能是int,否则会抛出exception! --- 不错的解决方法,不过有的时候用int要方便些。

3、我猜想的解决方法,自己没有实验:model定义的时候设定初始值
private int diesVolume = 0;

你可能感兴趣的:(今天工作的时候遇到一异常)