Caused by: org.flowable.common.engine.impl.javax.el.ELException: com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: can not find lambda cache for this property [userId] of entity [com.ehl.base.workflow.handler.SysUserRole]
时间: 2024-03-03 15:19:57 浏览: 156
Caused by: java.lang.ClassNotFoundException: org.apache.commons.collections.Transformer异常
5星 · 资源好评率100%
这个错误可能是因为在使用 MyBatis-Plus 进行数据库访问时,出现了无法找到实体类对应的 lambda 缓存。这可能是因为实体类中的属性名与数据库表中的列名不一致,或者是实体类中的属性没有使用 MyBatis-Plus 的注解进行标注。你可以检查一下实体类的属性名和注解是否正确,或者尝试手动清除 MyBatis-Plus 的缓存来解决这个问题。
阅读全文