mybatis xml编写查询语句
select报错:
<select id="selectProductByCardAndPwd"> 参数是map类型,可以不写
但是这里没有写返回类型
resultType/resultMap
所以就报错,加上resultType/resultMap就不会出现以上错误了
修改后 <select id="selectProductByCardAndPwd" resultType="ProductCard">
mybatis xml编写查询语句
select报错:
<select id="selectProductByCardAndPwd"> 参数是map类型,可以不写
但是这里没有写返回类型
resultType/resultMap
所以就报错,加上resultType/resultMap就不会出现以上错误了
修改后 <select id="selectProductByCardAndPwd" resultType="ProductCard">