[Solved] [Problem solving] Two solutions for mybatis type mismatch -Result type not match for select id=”selectUser” srcType: com.kuang.pojo

Problem description:

Result type not match for select id="selectUser"
 srcType: com.kuang.pojo.User
 targetType: com.kuang.pojo.User

image-20220808111115717

Solution:

method one:

Re-alias the entity class in mybatis-config.xml;

<typeAlias type="com.kuang.pojo.User" alias="User"/>

Method Two:

There are multiple User classes in your project, just rename User to Users;

image-20220808111324238

image-20220808111309019