org.hibernate.PropertyAccessException: IllegalArgumentException occurred while

导致异常结果:

org.hibernate.PropertyAccessException: IllegalArgumentException occurred while calling setter of com.zxr.shoucang.domain.MySite.isShare

....

Caused by: java.lang.IllegalArgumentException: argument(论点) type mismatch(翻译:类型不匹配(错配))

这个异常java.lang.IllegalArgumentException:参数类型不正确的异常

解决办法:

1.查看映射文件改类型

时间: 2024-10-14 15:11:29

org.hibernate.PropertyAccessException: IllegalArgumentException occurred while的相关文章

异常org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.mi.domain.Department.id

[异常提示] org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of com.mi.domain.Department.id  java.lang.IllegalArgumentException: object is not an instance of declaring class 解决办法:Hql 中的级联关系不能传入外键,而是要传入级联对象,学习还是要认真仔细啊

[hibernate]org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter

org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of com.wa.dataprocess.query.model.AcrossDeptApply 包装类和基本数据类型的区别, 包装类默认为null,基本类型为0. public class AcrossDeptApply implements Serializable private Str

org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type sette

org.hibernate.PropertyAccessException: Null value was assigned to a property <property column="sex"  name="sex"  type="java.lang.Boolean"/> JavaBean修改:private Boolean sex; 原因:数据库字段值为NULL,int 类型不能赋值为NULL,只能为0,但有些实际应用中,如学

org.hibernate.PropertyAccessException:Null value was assigned to a property of primitive type setter

在项目开发中遇到下面的异常:org.hibernate.PropertyAccessException:Null value was assigned to a property of primitive type setter ofcom.atguigu.surveypark.model.Page.orderno 这个异常的解释是:      Null值被分配给了设置为基本类型的Page类里的orderno属性.也就是说Null是不能分配给基本数据类型的.解决办法:手动给数据库中是Null值的

hibernate.PropertyAccessException: Null value was assigned to a property of primitive type

日志: [WARN-2016/07/26/18/:45/:52]ProcessEngineServiceImpl.(257) - 审批流程log日志--submitProcess方法:提交人userId:3333333349,TaskId:245959,ProcInstId:null,WfInstaceId:16583386853,当前时间:Tue Jul 26 18:45:52 CST 2016 [ERROR-2016/07/26/18/:45/:52]ProjectRepayControll

org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of 异常

在开发项目的过程中,发现如下异常: 原因是updateType字段为int类型,不能接收null,而在数据库中对应的字段为null,解决方法:将updateType字段类型改为Integer.

hibernate 使用sql 查询(setResultTransformer)

使用方法举例如下: public List findByOid(Object oid) {  log.debug("finding all WatershedAnalyse instances");  Session session=getSessionFactory().openSession();  SQLQuery query=null;  try {   String queryString = "SELECT oid,bdatetime,basin_code,p,e

J2EE进阶(十一)SSH框架整合常见问题汇总(二)

J2EE进阶(十一)SSH框架整合常见问题汇总(二) 问题8 java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Boolean      解决 数据库中userdetail表的映射文件如下,可见xb字段数据类型为boolean类型,而自己在userdetail模型类中定义的类型为String类型.为此可以得出这样的结论.模型类中的数据及类型必须与数据表映射文件中的字段信息保持一致.应该可以同时生成

Error creating bean with name &#39;entityManagerFactory&#39; defined in class path resource解决方案

? 项目是集成了Spring Boot和Spring Data,然后简单的把Spring Data Jpa和Spring Boot配置完成,开始进行公司项目的重构,然后出现了这个问题.当时也是找了挺多的资料,后来发现时javaBean的问题. 在Spring Data Jpa和实体类进行映射的时候,要特别注意实体类型和set.get方法名是否对应. Error starting ApplicationContext. To display the conditions report re-run