org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: 10.0.4.18 ### Error updating database. Cause: java.lang.IllegalArgumentException: argument "content" is null
时间: 2023-07-11 11:00:31 浏览: 245
Mybatis报错: org.apache.ibatis.exceptions.PersistenceException解决办法
这个错误的出现可能是因为你的代码中出现了一个空对象,导致在执行数据库操作时出现了异常。具体来说,可能是因为你在执行更新操作时,传入了一个名为"content"的参数,但该参数的值为null,导致了IllegalArgumentException异常的抛出。
要解决这个问题,你需要检查你的代码,找到传入null值的地方,并对其进行处理。可能需要在代码中增加一些判断语句,以保证传入的参数不为null。如果你具体的代码实现细节我可以帮你分析一下。
阅读全文