1.数据库中的主键为一个自动增加的int类型的,其余的是string类型的。当在使用
this.getHibernateTemplate().delete(this.getHibernateTemplate().get(userproduce.class,id));
出现了org.springframework.orm.hibernate3.hibernatesystemexception: provided id of the wrong type. expected: class java.lang.integer, got class java.lang.string; nested exception is org.hibernate.typemismatchexception: provided id of the wrong type. expected: class java.lang.integer, got class java.lang.string
解决的方法是:数据库中的类型不变还是为int,但是在model中.java以及.hbm.xml中id改为string类型去进行使用。
本文介绍了一个关于Hibernate框架中主键类型不匹配的问题及其解决方案。具体表现为使用Java代码删除记录时出现异常,原因是数据库主键为int类型而Java代码中设置为主键为string类型。解决方法是在Model层及配置文件中将主键类型设为string。
505

被折叠的 条评论
为什么被折叠?



