赞
踩
MyBatisSystemException翻译为Mybatis系统异常 由此我想到Mapper层,sql,xml,数据库等相关的地方发生的问题。异常如下:
- org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'id' of 'class org.jeecg.modules.entity.DataManagement' with value '1518135546654846977' Cause: java.lang.IllegalArgumentException: argument type mismatch
- at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:96)
由于异常中带有id字样,并且后面有value+数字的情况,可以大概判定是id方向出现的问题
而那一串数字则代表出现了溢出。而我数据库的id用的是int类型,所以问题大概率出现在这。
把库中int改为varchar pojo中改为private String id;
改完运行问题解决了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。