mybatis日常异常(一)

Exception in thread "main"org.apache.ibatis.exceptions.PersistenceException:

### Error building SqlSession.

### The error may exist in sqlmap/User.xml

### The error occurred while processingmapper_resultMap[UserResult]


源码

<select id="findUserId"parameterType="Integer" resultMap="com.mybatis.po.users">

    SELECT * FROM USERINFO_F WHERE id = #{id}

  select>


resultMap 改成resultType



你可能感兴趣的:(mybatis学习日记)