spring boot集成tk.mybatis3.4.0通用mapper, java.lang.ClassCastException,实体不能转换为实体

项目使用spring boot1.5.2 集成mybatis通用mapper插件,发现查询方法selectByPrimaryKey

会导致发生异常—— java.lang.ClassCastException:com.xxx.xxx.entity cannot be cast to com.xxx.xxx.entity

测试过:insert、update、delete方法都没有问题,就是查询出实体就报异常。后来到github看到这是插件的一个bug


解决方法如下:

在spring boot项目resources目录下创建一个META-INF文件夹,在META-INF目录下再创建一个

spring-devtools.properties 文件


加入以下代码即可解决

restart.include.companycommonlibs=tk/mybatis.*

你可能感兴趣的:(异常)