出錯代碼mybatis
<select id="findUserById" parameterType="int" resultType="cn.po.User">//路徑和類都正確
select * from user where id=#{id}
</select>spa
報錯提示翻譯
大體翻譯是 cn.po.User類 不正缺,或找不到select
糾正代碼總結
<select id="findUserById" parameterType="int" resultType="cn.xx.mybatis.po.User">
select * from user where id=#{id}
</select>co
暫時_問題總結:僅僅把包名加長,改爲上面的。就不報了。background
暫時這麼認爲吧,之後知道緣由再寫bat