mybatis下编译出错
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
解决方案:--->-> 有木有。。。
<select id="getxxxx" parameterType="java.util.Map" resultMap="String"> </select>
将resultMap改为 resultType即
<select id="getxxxx" parameterType="java.util.Map" resultType="String">
</select>
......问君能有几多愁,恰是今朝圣诞单身棍。