在mybatis查詢時,一直在報java
org.apache.ibatis.builder.IncompleteElementException:apache
Could not find parameter map java.lang.Integermybatis
一直覺得這個查詢語句有問題或者配置文件xml有錯誤。app
後來發現是別的配置文件錯誤ui
實際上這是由於在另外一個Mapper.xml裏將parameterType寫成了parameterMap,而mybaties中已經再也不用這個屬性了。
<select id="getClassByID" parameterMap="String" resultMap="classResultMap"> xml