org.springframework.orm.hibernate3.HibernateQueryException: ClaimVoucherDetial is not mapped [delete from ClaimVoucherDetial where bizClaimVoucher.id = ?]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: ClaimVoucherDetial is not mapped [delete from ClaimVoucherDetial where bizClaimVoucher.id = ?]
如果出现这种错误,可能是你的hql语句当中的表名有问题,Hql里面的表名对应的不是数据库的表名,应该是持久化类的名字。这是关于Hibernate的ORM映射。