mybatis-plus报Not Found TableInfoCache异常

1.在改造百度uid-generator时遇到该异常报错,经多方排查解决方案如下:
2.异常信息:

Invocation of init method failed; nested exception is com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: com.lyr.common.uidgeneratorplus.dao.entity.WorkerNode Not Found TableInfoCache.

3.报错原因,因为本实体类继承了官方model类,想要使用官方提供的增删改接口,在该处使用时,主类使用了@Component加入bean管理,此时实体类对应的mapper未注入进来,使用时会报该错误,最简单的解决办法就是,在该使用类手动注入下该实体类对应的mapper即可;
在这里插入图片描述

你可能感兴趣的:(spring,spring)